/* ==========================================================================
   XtraCorporate Page Cover Banner
   Matches homepage hero: bg image + dotted texture + blue overlay
   ========================================================================== */

.page-cover {
    position: relative;
    width: 100%;
    height: 480px;
    min-height: 480px;
    max-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dotted grid texture (same as homepage hero) */
.page-cover-dotted {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.8;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAG0lEQVR4AWJiYGD4D8RgBOIwgllAAsQBUhAEAAAA//9Zk0qgAAAABklEQVQDACO2AQdCSU3+AAAAAElFTkSuQmCC");
}

/* Blue overlay matching homepage */
.page-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 80, 0.7);
    z-index: 1;
}

/* Content on top of overlay */
.page-cover-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 130px 20px 40px;
}

/* Page title — Playfair Display, italic */
.page-cover-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 46px;
    color: #ffffff;
    margin: 0 0 18px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Breadcrumbs container */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs .fa-home {
    font-size: 15px;
}

.breadcrumb-sep {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs span[itemprop="name"] {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .page-cover {
        min-height: 280px;
        height: 280px;
        max-height: 280px;
    }
    .page-cover-content {
        padding: 80px 15px 30px;
    }
    .page-cover-content h1 {
        font-size: 36px;
        margin-bottom: 14px;
    }
    .breadcrumbs {
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-cover {
        min-height: 220px;
        height: 220px;
        max-height: 220px;
    }
    .page-cover-content {
        padding: 70px 12px 24px;
    }
    .page-cover-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .breadcrumbs {
        font-size: 12px;
        gap: 6px;
    }
    .breadcrumbs .fa-home {
        font-size: 13px;
    }
}
