.conference-highlights {
    --highlights-accent: #d95782;
    --highlights-deep: #991b45;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(46px, 4.5vw, 68px) 0 clamp(60px, 6vw, 88px);
    background: var(--secondary);
}

.conference-highlights__inner {
    position: relative;
    z-index: 1;
}

.conference-highlights__header {
    max-width: 970px;
    margin-inline: auto;
    text-align: center;
}

.conference-highlights__title {
    margin: 0;
    text-wrap: balance;
}

.conference-highlights__media {
    position: relative;
    width: min(100%, 860px);
    margin: clamp(34px, 5vw, 58px) auto 0;
}

.conference-highlights__media::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    border: 1px solid rgba(217, 87, 130, 0.25);
    border-radius: 32px;
    background: transparent;
}

.conference-highlights__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48), 0 0 45px rgba(153, 27, 69, 0.11);
}

.conference-highlights__frame iframe,
.youtube-facade-host,
.youtube-facade {
    display: block;
    width: 100%;
    height: 100%;
}

.conference-highlights__frame iframe,
.youtube-facade__player {
    border: 0;
}

.youtube-facade-host {
    position: relative;
}

.youtube-facade {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: #ffffff;
    background: #090708;
    cursor: pointer;
}

.youtube-facade__thumbnail,
.youtube-facade__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.youtube-facade__thumbnail {
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 350ms ease, filter 350ms ease;
}

.youtube-facade__shade {
    background:
        linear-gradient(180deg, rgba(5, 3, 4, 0.08) 20%, rgba(5, 3, 4, 0.72) 100%),
        linear-gradient(90deg, rgba(153, 27, 69, 0.2), transparent 65%);
}

.youtube-facade__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px;
}

.youtube-facade__play {
    display: grid;
    width: clamp(58px, 7vw, 78px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: #991b45;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 28px rgba(217, 87, 130, 0.25);
    transition: transform 250ms ease, background-color 250ms ease;
}

.youtube-facade__play svg {
    width: 36%;
    height: 36%;
    margin-left: 4px;
    fill: currentColor;
}

.youtube-facade__label {
    font-size: clamp(0.76rem, 1.5vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}

.youtube-facade:hover .youtube-facade__thumbnail {
    filter: brightness(0.84);
    transform: scale(1.045);
}

.youtube-facade:hover .youtube-facade__play {
    background: #b61f51;
    transform: scale(1.08);
}

.youtube-facade:focus-visible {
    outline: 3px solid #d95782;
    outline-offset: -5px;
}

.youtube-facade__player {
    display: block;
    width: 100%;
    height: 100%;
}

.conference-highlights__footer {
    display: flex;
    justify-content: center;
    margin-top: clamp(28px, 4vw, 40px);
}

.conference-highlights__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease,
        box-shadow 200ms ease;
}

.conference-highlights__link svg {
    flex: 0 0 auto;
    transition: transform 200ms ease;
}

.conference-highlights__link:hover {
    border-color: var(--highlights-accent);
    color: #ffffff;
    background: var(--highlights-deep);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34), 0 0 24px rgba(153, 27, 69, 0.16);
    transform: translateY(-3px);
}

.conference-highlights__link:hover svg {
    transform: translate(2px, -2px);
}

.conference-highlights__link:focus-visible {
    outline: 3px solid rgba(217, 87, 130, 0.72);
    outline-offset: 4px;
}

@media (max-width: 767.98px) {
    .conference-highlights {
        padding: 24px 0 64px;
    }

    .conference-highlights__media::before {
        inset: -6px;
        border-radius: 23px;
    }

    .conference-highlights__frame {
        border-radius: 18px;
    }

    .conference-highlights__link {
        width: 100%;
        max-width: 430px;
        padding: 0 18px;
        font-size: 0.68rem;
        line-height: 1.3;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conference-highlights__link,
    .conference-highlights__link svg,
    .youtube-facade__thumbnail,
    .youtube-facade__play {
        transition: none;
    }

    .conference-highlights__link:hover,
    .conference-highlights__link:hover svg,
    .youtube-facade:hover .youtube-facade__thumbnail,
    .youtube-facade:hover .youtube-facade__play {
        transform: none;
    }
}
