/* === Site-B · About the Event (uses SiteB localizations) === */
.sb-about {
    background: #20306c;
    color: #f0f0f0;
}
.sb-about__inner {
    max-width: var(--container);
    margin: 0 auto;
    min-height: 585px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT */
.sb-about__copy {
    padding: 60px 24px 60px 65px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.sb-about__title {
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1;
    margin: 0 0 18px 0;
    color: #f0f0f0;
}
.sb-about__rule {
    border: 0;
    border-top: 1px solid #f0f0f0;
    width: min(590px, 100%);
    margin: 0;
}

.sb-about__block {
    margin-top: 6px;
}
.sb-about__h3 {
    font-family: "Lato", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 30px;
    margin: 20px 0 8px 45px;
    color: #f0f0f0;
}
.sb-about__p {
    font-family: "Lato", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 2.1vw, 20px);
    line-height: 25px;
    margin: 0 0 0 65px;
    max-width: 46ch;
    color: #f0f0f0;
}

.sb-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 0 65px;
    font-family: "Lato", system-ui, sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 25px;
    color: #b8d779;
    text-decoration: none;
}
.sb-about__cta:hover {
    opacity: 0.9;
}
.sb-about__cta-ic {
    width: 16px;
    height: 16px;
}

/* RIGHT */
.sb-about__media {
    position: relative;
    min-height: 585px;
    overflow: hidden;
    isolation: isolate;
}
.sb-about__media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    z-index: 0;
}

/* Play button centered */
.sb-about__play {
    position: absolute;
    inset: 0; /* centers with width/height below via margin:auto */
    margin: auto;
    width: 70px;
    height: 70px;
    background: transparent;
    border: 5px solid #ffffff;
    border-radius: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
    z-index: 3; /* above image */
    overflow: visible; /* allow bubble to extend around the button */
}

/* Bubble as the button's background (always centered on the button) */

/* Play icon */
.sb-about__play::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #ffffff;
    transform: translateX(1px); /* optical nudge */
}

.sb-about__play:hover {
    opacity: 0.92;
    transform: scale(1.02);
}
.sb-about__play:focus-visible {
    outline: 2px dashed #ffffff;
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .sb-about__inner {
        grid-template-columns: 1fr;
    }
    .sb-about__play::before {
        display: none;
    }
    .sb-about__media {
        order: -1;
        min-height: 320px;
    }
    .sb-about__bubble {
        /* hide bubble on mobile */
        display: none;
    }
    .sb-about__copy {
        padding: 28px 16px 36px 16px;
    }
    .sb-about__h3 {
        margin-left: 12px;
    }
    .sb-about__p {
        margin-left: 22px;
    }
    .sb-about__cta {
        margin-left: 22px;
    }
}
