/* News Hero Section */
.news-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
}

.news-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.news-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: white;
    z-index: 1;
    position: relative;
}

.news-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.news-hero-excerpt {
    font-size: 1.375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-bottom: 30px;
}

.news-hero-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.news-hero-meta-item svg {
    width: 20px;
    height: 20px;
}

/* End News Hero Section */

/* Page Hero Section with Breadcrumbs */
.page-hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 30px;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 127, 192, 0.85) 0%, rgba(246, 131, 30, 0.75) 100%);
    z-index: 1;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: white;
    z-index: 2;
    position: relative;
}

/* Breadcrumbs Styles */
.page-breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-hero-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.page-hero-excerpt {
    font-size: clamp(1rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-bottom: 32px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.page-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.page-hero-meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.page-hero-meta-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Decorative Wave Shape */
.page-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.page-hero-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-hero-section {
        min-height: 50vh;
        padding: 120px 0 80px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-excerpt {
        font-size: 1rem;
    }

    .page-hero-meta {
        gap: 16px;
    }

    .page-hero-meta-item {
        font-size: 0.875rem;
        padding: 6px 12px;
    }

    .breadcrumb-item {
        font-size: 0.75rem;
    }

    .page-hero-shape {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        min-height: 45vh;
        padding: 100px 0 60px;
    }

    .page-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}