/* ==========================================
   GLOBAL PAGE HERO - Left Aligned
   Uses global-typography.css variables
========================================== */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, var(--color-primary-dark, #3B56D9) 0%, var(--color-primary, #4D6AFF) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Content - Left Aligned */
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.page-hero-title {
    font-size: var(--font-4xl, 2.5rem);
    font-weight: var(--font-weight-bold, 700);
    line-height: var(--line-tight, 1.2);
    margin-bottom: var(--space-md, 0.75rem);
    color: var(--color-white, #FFFFFF);
    text-align: left;
}

.page-hero-description {
    font-size: var(--font-base, 1rem);
    line-height: var(--line-relaxed, 1.7);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-align: left;
    margin: 0;
}

/* Breadcrumbs - Left Aligned */
.page-hero-breadcrumbs {
    margin-bottom: var(--space-lg, 1rem);
}

.page-hero-breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.page-hero-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm, 0.875rem);
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast, 0.2s ease);
}

.page-hero-breadcrumbs a:hover {
    color: var(--color-white, #FFFFFF);
}

.page-hero-breadcrumbs .separator {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumbs .current {
    color: var(--color-white, #FFFFFF);
    font-weight: var(--font-weight-semibold, 600);
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .page-hero {
        min-height: 280px;
    }
    
    .page-hero-content {
        padding: 50px 0;
    }
    
    .page-hero-title {
        font-size: var(--font-3xl, 2rem);
    }
    
    .page-hero-description {
        font-size: var(--font-sm, 0.875rem);
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .page-hero {
        min-height: 240px;
    }
    
    .page-hero-content {
        padding: 40px 0;
    }
    
    .page-hero-title {
        font-size: var(--font-2xl, 1.75rem);
    }
    
    .page-hero-description {
        font-size: var(--font-xs, 0.75rem);
    }
    
    .page-hero-breadcrumbs li {
        font-size: var(--font-xs, 0.75rem);
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .page-hero {
        min-height: 200px;
    }
    
    .page-hero-content {
        padding: 30px 0;
    }
    
    .page-hero-title {
        font-size: var(--font-xl, 1.5rem);
    }
}