/* ── Speaker Videos — intro + embed grid / mobile slider ── */
.speaker-videos {
    --sv-navy: #2d3b68;
    --sv-gold: #ce8924;
    position: relative;
    background: #f7f8fc;
    overflow: hidden;
}

.speaker-videos__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 55% at 0% 40%, rgba(45, 59, 104, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 100% 70%, rgba(206, 137, 36, 0.07) 0%, transparent 55%);
}

.speaker-videos__inner {
    position: relative;
    z-index: 1;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.speaker-videos__layout {
    display: grid;
    grid-template-columns: minmax(20rem, 0.7fr) minmax(0, 2.3fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
}

.speaker-videos__intro {
    padding-top: 0.35rem;
    max-width: 20rem;
}

.speaker-videos__intro .new-tickets__copy {
    padding-right: 0;
}

.speaker-videos__intro .new-tickets__intro {
    max-width: 20rem;
}

.speaker-videos__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.speaker-videos__cta i {
    font-size: 0.78rem;
}

.speaker-videos__slider-wrap {
    min-width: 0;
}

.speaker-videos__swiper {
    overflow: hidden;
    padding-bottom: 0.15rem;
}

.speaker-videos__swiper .swiper-slide {
    height: auto;
}

.speaker-videos__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(45, 59, 104, 0.08);
    box-shadow: 0 12px 28px rgba(30, 38, 72, 0.08);
}

.speaker-videos__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 504 / 399;
    background: #e8ebf3;
    overflow: hidden;
}

.speaker-videos__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.speaker-videos__meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.1rem 1.15rem 1.25rem;
}

.speaker-videos__card-title {
    margin: 0;
    color: var(--sv-navy);
    font-family: var(--textFamily), 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
}

.speaker-videos__speaker {
    margin: 0.45rem 0 0;
    color: #7a849f;
    font-family: var(--textFamily), 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.speaker-videos__accent {
    display: block;
    width: 2.25rem;
    height: 3px;
    margin-top: 0.85rem;
    border-radius: 999px;
    background: var(--sv-gold);
}

.speaker-videos__controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.15rem;
}

.speaker-videos__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(45, 59, 104, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--sv-navy);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.speaker-videos__nav:hover {
    background: var(--sv-navy);
    border-color: var(--sv-navy);
    color: #fff;
}

.speaker-videos__nav.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.speaker-videos__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto;
}

.speaker-videos__pagination .swiper-pagination-bullet {
    width: 0.55rem;
    height: 0.55rem;
    margin: 0 !important;
    background: rgba(45, 59, 104, 0.28);
    opacity: 1;
}

.speaker-videos__pagination .swiper-pagination-bullet-active {
    background: var(--sv-gold);
}

@media (max-width: 991.98px) {
    .speaker-videos__layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .speaker-videos__intro {
        max-width: none;
        text-align: center;
    }

    .speaker-videos__intro .heading9 {
        display: flex;
        justify-content: center;
    }

    .speaker-videos__intro .new-tickets__intro {
        margin-inline: auto;
        max-width: 34rem;
    }

    .speaker-videos__controls {
        display: flex;
    }
}

@media (min-width: 992px) {
    .speaker-videos__controls {
        display: none;
    }
}
