/* ==========================================================================
   Single Webinar Page Styles (Matching Figma Design)
   ========================================================================== */

.sk-webinar-single {
    width: 100%;
    position: relative;
    padding: 30px 0 80px 0;
    background: #FFFFFF;
}

.sk-webinar-single__container {
    position: relative;
}

.sk-webinar-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column / Sticky Sidebar */
.sk-webinar-layout__left {
    width: 100%;
}

.sk-webinar-sticky-title {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.sk-webinar-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #163C75;
    text-transform: uppercase;
    margin: 0;
    word-break: break-word;
    letter-spacing: -0.5px;
}

.sk-webinar-scroll-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid #163C75;
    color: #163C75;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sk-webinar-scroll-btn:hover {
    background: #163C75;
    color: #FFFFFF;
    transform: translateY(3px);
}

/* Right Main Column */
.sk-webinar-layout__right {
    width: 100%;
}

.sk-webinar-desc-box {
    background: #163C75;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(22, 60, 117, 0.12);
}

.sk-webinar-desc-box__text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

/* Meta Row (Date, Time, Cost) */
.sk-webinar-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 35px;
    margin-bottom: 25px;
}

.sk-webinar-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #163C75;
}

.sk-webinar-meta-item i {
    font-size: 18px;
    color: #163C75;
    width: 22px;
    text-align: center;
}

/* Register Action */
.sk-webinar-action {
    margin-bottom: 50px;
}

.sk-webinar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #163C75;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 60, 117, 0.18);
}

.sk-webinar-btn:hover {
    background: #255EB3;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 94, 179, 0.28);
}

/* Content Blocks (Agenda, Organizer, Speakers) */
.sk-webinar-section {
    margin-bottom: 50px;
}

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

.sk-webinar-section__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #163C75;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.sk-webinar-section__wysiwyg {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #282828;
}

.sk-webinar-section__wysiwyg ol,
.sk-webinar-section__wysiwyg ul {
    padding-left: 20px;
    margin: 15px 0;
}

.sk-webinar-section__wysiwyg li {
    margin-bottom: 10px;
}

/* Speakers Grid */
.sk-webinar-speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.sk-webinar-speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.sk-webinar-speaker-card__photo-wrap {
    width: 100%;
    height: 350px;
    background: #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sk-webinar-speaker-card__photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sk-webinar-speaker-card__placeholder {
    width: 100%;
    height: 100%;
    background: #D9D9D9;
}

.sk-webinar-speaker-card__name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #163C75;
    margin: 0 0 6px 0;
    width: 100%;
}

.sk-webinar-speaker-card__position {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #282828;
    margin: 0;
    width: 100%;
}

/* ==========================================================================
   Mobile Responsive Adjustments (Matching Figma Node 131-9680)
   ========================================================================== */

@media (max-width: 992px) {
    .sk-webinar-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sk-webinar-sticky-title {
        position: static;
        gap: 20px;
    }

    .sk-webinar-title {
        font-size: 32px;
    }

    .sk-webinar-scroll-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .sk-webinar-single {
        padding: 20px 0 50px 0;
    }

    .sk-webinar-title {
        font-size: 28px;
    }

    .sk-webinar-desc-box {
        padding: 22px 20px;
        border-radius: 10px;
    }

    .sk-webinar-desc-box__text {
        font-size: 16px;
    }

    .sk-webinar-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sk-webinar-btn {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 12px 24px;
    }

    .sk-webinar-section__title {
        font-size: 24px;
    }

    .sk-webinar-section__wysiwyg {
        font-size: 16px;
    }

    .sk-webinar-speakers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sk-webinar-speaker-card__photo-wrap {
        height: 320px;
    }

    .sk-webinar-speaker-card__name {
        font-size: 19px;
    }

    .sk-webinar-speaker-card__position {
        font-size: 14px;
    }
}