/* Media Center Unified Header Styles */
:root {
    --header-gradient-start: #0d6efd;
    --header-gradient-end: #063c7b;
    --header-text-color: #fff;
    --header-accent-color: #ffc107;
}

/* Full Width Hero Section */
.hero-section-wrapper {
    margin-top: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem;
    padding: 0;
    overflow: hidden;
}

.hero-card {
    background: linear-gradient(135deg, var(--header-gradient-start) 0%, var(--header-gradient-end) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: 3rem 1rem;
    color: var(--header-text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    text-align: center;
}

/* Abstract Background shapes */
.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-icon-bg {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--header-accent-color);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Tajawal', sans-serif;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 auto 1.5rem auto;
    font-weight: 300;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.stat-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--header-accent-color);
}

.stat-badge i {
    color: var(--header-accent-color);
}

/* Breadcrumb Styles */
.media-breadcrumb {
    margin-top: 1rem;
    padding: 0;
    background: transparent;
    justify-content: center;
}

.media-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.media-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "\f104";
    /* FontAwesome chevron-left (RTL) or angle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.media-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.media-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.media-breadcrumb .breadcrumb-item.active {
    color: var(--header-accent-color);
    font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .stat-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}