/* ==========================================================================
   Our Promo Materials Page Styles
   ========================================================================== */

.sk-promo-page {
    width: 100%;
    padding: 40px 0 80px 0;
    background: #fff;
}

.sk-promo-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 1.1;
    color: #163c75;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Page Sections */
.sk-promo-content {
    position: relative;
}

.sk-promo-section {
    margin-bottom: 70px;
}

.sk-promo-section:last-child {
    margin-bottom: 0;
}

.sk-promo-section__header {
    margin-bottom: 35px;
}

.sk-promo-section__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #163C75;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    padding-bottom: 12px;
}

.sk-promo-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #255EB3;
    border-radius: 2px;
}

/* Block 1: PDF Presentations Grid */
.sk-promo-pdf__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.sk-promo-pdf-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #FFFFFF;
    border: 1px solid #EBF3FA;
    border-radius: 16px;
    padding: 28px 25px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(22, 60, 117, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.sk-promo-pdf-card:hover {
    transform: translateY(-4px);
    border-color: #255EB3;
    box-shadow: 0 15px 35px rgba(22, 60, 117, 0.1);
}

.sk-promo-pdf-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FFF5F5;
    color: #E53E3E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sk-promo-pdf-card:hover .sk-promo-pdf-card__icon {
    background: #E53E3E;
    color: #FFFFFF;
}

.sk-promo-pdf-card__body {
    flex: 1;
}

.sk-promo-pdf-card__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #163C75;
    margin: 0 0 8px 0;
}

.sk-promo-pdf-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #255EB3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.sk-promo-pdf-card:hover .sk-promo-pdf-card__action {
    color: #163C75;
}

/* Block 2: Video Presentations Grid */
.sk-promo-video__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.sk-promo-video-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #EBF3FA;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(22, 60, 117, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.sk-promo-video-card.is-hidden-video {
    display: none;
}

.sk-promo-video-card.is-hidden-video.is-visible {
    display: flex;
    animation: skFadeIn 0.4s ease forwards;
}

@keyframes skFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sk-promo-video-card:hover {
    transform: translateY(-4px);
    border-color: #255EB3;
    box-shadow: 0 14px 30px rgba(22, 60, 117, 0.1);
}

.sk-promo-video-card__player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
}

.sk-promo-video-card__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sk-promo-video-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #163C75;
    color: #FFFFFF;
    font-size: 48px;
}

.sk-promo-video-card__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #163C75;
    padding: 20px 22px;
    margin: 0;
    flex: 1;
}

/* Toggle Button */
.sk-promo-video__toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.sk-promo-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #FFFFFF;
    color: #163C75;
    border: 1.5px solid #163C75;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 60, 117, 0.06);
}

.sk-promo-toggle-btn:hover {
    background: #163C75;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 60, 117, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .sk-promo-pdf__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sk-promo-video__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sk-promo-header__title {
        font-size: 34px;
    }

    .sk-promo-section__title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .sk-promo-title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .sk-promo-video__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sk-promo-toggle-btn {
        width: 100%;
        padding: 12px 24px;
    }

    .sk-promo-pdf-card {
        padding: 20px;
        gap: 15px;
    }

    .sk-promo-pdf-card__title {
        font-size: 16px;
    }
}