/* ══ HERO CAROUSEL ══ */
.hero-carousel-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .28);
    margin-bottom: 10px;
}

.hero-carousel-wrap .carousel-inner {
    height: 520px;
}

@media(max-width:768px) {
    .hero-carousel-wrap .carousel-inner {
        height: 300px;
    }
}

.hero-carousel-wrap .carousel-item {
    height: 100%;
}

.hero-carousel-wrap .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background-color: #050505;
    transition: opacity .6s;
}

.hero-carousel-wrap .carousel-item.active img {
    opacity: 1;
}

/* cinematic gradient */
.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 32px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .45) 60%, transparent 100%);
    z-index: 10;
}

.hero-caption .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #8c1829;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-caption h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

@media(max-width:576px) {
    .hero-caption h2 {
        font-size: 1.1rem;
    }
}

.hero-caption .hero-meta {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
}

/* Custom nav arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 20;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.hero-arrow:hover {
    background: #8c1829;
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev {
    left: 16px;
}

.hero-arrow.next {
    right: 16px;
}

/* Thumbnail filmstrip */
.filmstrip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 4px;
    margin-bottom: 28px;
    scrollbar-width: none;
}

.filmstrip-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color .2s, transform .2s;
    opacity: .65;
}

.filmstrip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filmstrip-thumb.active,
.filmstrip-thumb:hover {
    border-color: #8c1829;
    opacity: 1;
    transform: translateY(-2px);
}

/* ══ SECTION HEADING ══ */
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.section-heading .sh-bar {
    width: 4px;
    height: 22px;
    background: #8c1829;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-heading h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: .2px;
}

.section-heading .sh-more {
    margin-left: auto;
    font-size: .78rem;
    color: #8c1829;
    font-weight: 700;
    text-decoration: none;
}

.section-heading .sh-more:hover {
    text-decoration: underline;
}

/* ══ MULTIMEDIA CARDS ══ */
.media-feature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 360px;
    background: #111;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
    display: block;
    color: #fff;
    text-decoration: none;
}

.media-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s;
    filter: brightness(.82);
}

.media-feature-card:hover img {
    transform: scale(1.06);
    filter: brightness(.6);
}

.media-feature-card .mf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .2) 55%, transparent 100%);
    transition: background .4s;
}

.media-feature-card:hover .mf-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, .95) 0%, rgba(0, 0, 0, .4) 65%, transparent 100%);
}

.media-feature-card .mf-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
}

.media-feature-card .mf-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #8c1829;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 9px;
}

.media-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}

.media-feature-card .mf-meta {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 6px;
}

/* Play button for video card */
.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(1);
    font-size: 3.5rem;
    color: #fff;
    opacity: .88;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .6);
    transition: transform .3s, opacity .3s;
    pointer-events: none;
}

.media-feature-card:hover .play-badge {
    transform: translate(-50%, -60%) scale(1.15);
    opacity: 1;
}

/* ══ LEAD STORY ══ */
.lead-story-wrap {
    margin-bottom: 28px;
}

.lead-story-wrap .lead-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.lead-story-wrap .lead-img-wrap img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    transition: transform .6s;
}

.lead-story-wrap:hover .lead-img-wrap img {
    transform: scale(1.03);
}

.lead-story-wrap .lead-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #8c1829;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.lead-story-wrap .lead-title {
    font-size: 1.85rem;
    font-weight: 900;
    color: #111;
    line-height: 1.25;
    margin: 14px 0 8px;
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.lead-story-wrap .lead-title:hover {
    color: #8c1829;
}

.lead-story-wrap .lead-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.lead-story-wrap .lead-meta {
    font-size: .8rem;
    color: #999;
    margin-top: 10px;
}

/* ══ SUB-STORY CARD ══ */
.sub-card {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.sub-card:last-child {
    border-bottom: none;
}

.sub-card .sub-img {
    flex-shrink: 0;
    width: 88px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
}

.sub-card .sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.sub-card:hover .sub-img img {
    transform: scale(1.08);
}

.sub-card .sub-cat {
    font-size: .65rem;
    font-weight: 800;
    color: #8c1829;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.sub-card .sub-title {
    font-size: .92rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    transition: color .2s;
}

.sub-card:hover .sub-title {
    color: #8c1829;
}

.sub-card .sub-time {
    font-size: .72rem;
    color: #aaa;
    margin-top: 4px;
}

/* ══ LATEST UPDATES SIDEBAR ══ */
.updates-widget {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    overflow: hidden;
}

.updates-widget .uw-header {
    background: #1a1a2e;
    color: #fff;
    padding: 12px 16px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.updates-widget .uw-header i {
    color: #8c1829;
}

.updates-widget .uw-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}

.updates-widget .uw-item:last-child {
    border-bottom: none;
}

.updates-widget .uw-item:hover {
    background: #fafafa;
}

.updates-widget .uw-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #8c1829;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.updates-widget .uw-title {
    font-size: .88rem;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    transition: color .2s;
}

.updates-widget .uw-item:hover .uw-title {
    color: #8c1829;
}

.updates-widget .uw-time {
    font-size: .7rem;
    color: #bbb;
    margin-top: 3px;
}

/* ══ MORE NEWS GRID ══ */
.news-card-modern {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-modern:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
    transform: translateY(-4px);
}

.news-card-modern .ncm-img {
    overflow: hidden;
    height: 185px;
}

.news-card-modern .ncm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.news-card-modern:hover .ncm-img img {
    transform: scale(1.07);
}

.news-card-modern .ncm-body {
    padding: 14px 16px 10px;
    flex: 1;
}

.news-card-modern .ncm-cat {
    font-size: .65rem;
    font-weight: 800;
    color: #8c1829;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.news-card-modern .ncm-title {
    font-size: .97rem;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.news-card-modern .ncm-title:hover {
    color: #8c1829;
}

.news-card-modern .ncm-excerpt {
    font-size: .8rem;
    color: #777;
    line-height: 1.55;
    margin-top: 6px;
}

.news-card-modern .ncm-footer {
    padding: 8px 16px 12px;
    border-top: 1px solid #f5f5f5;
    font-size: .72rem;
    color: #bbb;
}

/* ══ AD SPACE ══ */
.ad-space {
    background: linear-gradient(135deg, #f8f8f8, #eee);
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 32px 16px;
    color: #bbb;
    font-size: .82rem;
}
