/* ============================================
   PREMIUM LEADERS & NEWS SECTION
============================================ */

.leaders-news-wrapper {
    background: #f8fafc;
    padding: var(--section-padding) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Leaders Section */
.leaders-section {
    margin-bottom: 80px;
}

.premium-tabs-wrapper {
    display: inline-flex;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;
    gap: 6px;
    position: relative;
    z-index: 10;
    max-width: 100%;
}

.premium-tab {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.premium-tab:hover {
    color: var(--primary-blue);
}

/* Premium Active States */
.premium-tab.active {
    background: linear-gradient(135deg, #00a7e1 0%, #00d4aa 100%);
    color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(0, 167, 225, 0.3);
    transform: translateY(-2px);
}

.premium-tab[data-tab="celebrities"].active {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
}

/* Mobile responsive tabs */
@media (max-width: 576px) {
    .premium-tabs-wrapper {
        display: flex;
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        padding: 5px;
        gap: 4px;
    }

    .premium-tab {
        flex: 1;
        padding: 11px 10px;
        font-size: 13px;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }

    .premium-tab.active {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 167, 225, 0.25);
    }
}

@media (max-width: 400px) {
    .premium-tab {
        font-size: 12px;
        padding: 10px 8px;
    }
}

/* Testimonial Card */
.leader-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.leader-content.active {
    display: block;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 40px;
    align-items: center;
}

.video-container {
    flex: 1.5;
    position: relative;
    padding-bottom: 35%;
    /* Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-container iframe,
.video-placeholder,
.video-launch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-launch {
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.video-frame {
    background: #000;
}

.video-poster {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 28px;
    color: var(--white);
    text-align: left;
    background: linear-gradient(135deg, #0b2236 0%, #165c7d 100%);
    overflow: hidden;
}

.video-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0, transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(0, 212, 170, 0.25) 0, transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
}

.video-poster>* {
    position: relative;
    z-index: 1;
}

.video-poster-primary {
    background: linear-gradient(135deg, #0b2236 0%, #165c7d 100%);
}

.video-poster-secondary {
    background: linear-gradient(135deg, #571845 0%, #c70039 100%);
}

.video-poster-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: auto;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-play-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 22px;
}

.video-poster-title {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
}

.video-poster-text {
    display: block;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    background: var(--gray-100);
}

.video-placeholder i {
    font-size: 40px;
    margin-bottom: 15px;
}

.testimonial-text {
    flex: 1;
}

.quote-icon {
    font-size: 30px;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 30px;
}

.author-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.author-details span {
    display: block;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-details small {
    color: var(--gray-500);
    font-size: 12px;
}

/* Thumbnails */
.video-thumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.thumb {
    width: 120px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
    position: relative;
    background: #000;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 20px;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.thumb-poster {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.thumb-poster-primary {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
        linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.thumb-poster-secondary {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
        linear-gradient(135deg, #f97316, #db2777);
}

.news-bg--primary {
    background-image:
        linear-gradient(180deg, rgba(8, 19, 38, 0.05), rgba(8, 19, 38, 0.4)),
        linear-gradient(135deg, #a7f3d0 0%, #0ea5e9 100%);
}

.news-bg--secondary {
    background-image:
        linear-gradient(180deg, rgba(38, 8, 19, 0.05), rgba(38, 8, 19, 0.35)),
        linear-gradient(135deg, #fde68a 0%, #f97316 50%, #ec4899 100%);
}

/* News Section */
.section-title-sm {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 167, 225, 0.15);
}

.card-image-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    /* Fallback Gradient */
}

.news-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-bg {
    transform: scale(1.08);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
}

.date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.date-badge .day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.date-badge .month {
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-wrapper {
    margin-bottom: 15px;
}

.category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.category.tech {
    background: rgba(0, 167, 225, 0.1);
    color: var(--primary-blue);
}

.category.innovate {
    background: rgba(247, 148, 29, 0.1);
    color: #f7941d;
}

.card-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover .card-body h4 {
    color: var(--primary-blue);
}

.card-body p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.btn-link {
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-link:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .video-container {
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 */
    }

    .video-poster {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .video-play-badge {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}