/* ------------------------------------------ */
/*              Page Banner Section           */
/* ------------------------------------------ */
.page-banner {
    /* margin-top: 48px; */
    /* Account for fixed navbar */
    /* padding-top: 40px; */
    padding-bottom: 20px;
}
.page-banner .container{
    margin-top: 30px;
}

/* Breadcrumb spacing area */
.breadcrumb-space {
    min-height: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #000;
    text-decoration: none;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 8px;
}

.breadcrumb-current {
    color: #000;
    font-weight: 500;
}

/* Elementor page breadcrumb wrapper */
.elementor-breadcrumb-wrapper {
    background: transparent;
}

.elementor-breadcrumb-wrapper .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Page Title */
.page-banner-title {
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Page Subtitle */
.page-banner-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Banner Meta (Government, Assignment Period) */
.page-banner-meta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.banner-meta-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.banner-meta-label {
    font-family: var(--font-main, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    min-width: 180px;
}

.banner-meta-value {
    font-family: var(--font-main, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-weight: 600;
    font-size: 1rem;
    color: #192D50;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-banner {
        padding-top: 20px;
        padding-bottom: 16px;
    }
    
    .page-banner .container {
        margin-top: 24px;
    }

    .page-banner-title {
        font-size: 36px;
    }

    .page-banner-subtitle {
        font-size: 16px;
    }

    .page-banner-meta {
        margin-top: 16px;
        gap: 0.75rem;
    }

    .banner-meta-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .banner-meta-label {
        min-width: auto;
        font-size: 0.75rem;
    }

    .banner-meta-value {
        font-size: 0.9rem;
    }

    .breadcrumb-space {
        min-height: 12px;
        margin-top: 16px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding-top: 16px;
        padding-bottom: 12px;
    }
    
    .page-banner .container {
        margin-top: 20px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .page-banner-subtitle {
        font-size: 14px;
    }

    .page-banner-meta {
        margin-top: 12px;
        gap: 0.625rem;
    }

    .banner-meta-label {
        font-size: 0.7rem;
        min-width: auto;
    }

    .banner-meta-value {
        font-size: 0.85rem;
    }

    .breadcrumb-space {
        min-height: 10px;
        margin-top: 12px;
        margin-bottom: 10px;
    }
}

