/* =========================================================================
   PAGE HERO BANNER COMPONENT (template-parts/page-banner.php)
   Architecture: High-Contrast Dynamic Header Overlay
   ========================================================================= */

.page-hero-banner {
    position: relative;
    width: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.banner-core-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.banner-flex-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-breadcrumbs {
    font-size: 14px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.banner-breadcrumbs a:hover {
    color: var(--fogya-orange, #f16b4e);
}

.banner-breadcrumbs .sep {
    font-size: 11px;
    color: #94a3b8;
}

.banner-breadcrumbs .current {
    color: var(--fogya-orange, #f16b4e);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero-banner {
        min-height: 180px;
    }
    .banner-title {
        font-size: 24px;
    }
    .banner-breadcrumbs {
        font-size: 12px;
    }
}