.page-hero-section {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-surface, #0f172a);
    margin-bottom: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: pageHeroZoom 15s ease-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-content {
    width: 100%;
    max-width: 1280px;
    padding: 0 1.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0 0 1.25rem 0;
    font-weight: 400;
    line-height: 1.5;
}

.page-hero-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.45rem 1.15rem;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.page-hero-breadcrumbs a {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.page-hero-breadcrumbs a:hover {
    opacity: 0.8;
}

@keyframes pageHeroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

@media (max-width: 768px) {
    .page-hero-section {
        height: 200px !important;
    }
}
