.event-page {
    padding: 150px 40px 0;
    background: #ffffff;
    color: #2a2a2a;
    overflow: hidden;
}

.event-page-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  /*  gap: 56px;*/
    text-align: center;
}

.event-page-copy {
    color: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-page-text {
    
    margin: 0 auto;
    color: rgba(42, 42, 42, 0.86);
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.event-page-copy-divider {
    width: min(150px, 60vw);
    height: 1px;
    margin: 32px 0;
    background: rgba(42, 42, 42, 0.22);
}

.event-page .event-page-cta {
    margin-top: 40px;
    background: var(--primary-navy) !important;
    color: #ffffff !important;
}

.event-page .event-page-cta:hover {
    background: #122347 !important;
    color: #ffffff !important;
}

.event-page-visual {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.event-page-image-frame {
    position: relative;
    width: 100%;
    min-height: min(64vw, 720px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    isolation: isolate;
}

.event-page-image {
    width: 100%;
    height: 100%;
    min-height: min(64vw, 720px);
    object-fit: cover;
    display: block;
}

.event-page .zora-carousel {
    width: 100%;
    margin-top: 0;
}

.event-page .editorial-cards {
    margin-bottom: 0;
}

.event-page-note {
    max-width: 657px;
    margin: 0 auto;
    padding: 60px 20px 60px;
    text-align: center;
}

.event-page-quote {
    margin: 0 0 24px;
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.event-page-highlights {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 10px 0 32px;
    background: rgba(42, 42, 42, 0.18);
}

.event-page-highlight {
    min-height: 360px;
    padding: 70px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.event-page-highlight-title {
    margin: 0 0 24px;
    color: #1f1f1f;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-page-highlight-copy {
    max-width: 430px;
    margin: 0 auto;
    color: rgba(42, 42, 42, 0.78);
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.4px;
}

.event-page-highlight-cta {
    margin-top: 42px;
    background: transparent;
    color: #1f1f1f;
    border: 1px solid rgba(31, 31, 31, 0.78);
}

.event-page-highlight-cta:hover {
    background: #1f1f1f;
    color: #ffffff;
}

.event-image-copy-map {
    position: relative;
    width: 100vw;
    min-height: max(980px, calc(100vh + var(--event-image-copy-map-extra-height, 0px)));
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: var(--primary-dark);
    color: var(--text-light);
}

.event-image-copy-map-image,
.event-image-copy-map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.event-image-copy-map-image {
    object-fit: cover;
    object-position: center;
}

.event-image-copy-map-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.5)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.62));
}

.event-image-copy-map-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: clamp(68px, 7vw, 104px) clamp(28px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: clamp(76px, 9vw, 128px);
    column-gap: clamp(64px, 9vw, 150px);
}

.event-image-copy-map-item {
    position: relative;
    width: min(100%, 455px);
    color: var(--text-light);
    text-align: left;
}

.event-image-copy-map-item--top-left {
    grid-column: 1;
    grid-row: 1;
}

.event-image-copy-map-item--top-right {
    grid-column: 2;
    justify-self: end;
}

.event-image-copy-map-item--middle-right {
    grid-column: 2;
    justify-self: end;
}

.event-image-copy-map-item--bottom-left {
    grid-column: 1;
}

.event-image-copy-map-item--bottom-right {
    grid-column: 2;
    justify-self: end;
}

.event-image-copy-map-item:nth-child(odd) {
    grid-column: 1;
    justify-self: start;
}

.event-image-copy-map-item:nth-child(even) {
    grid-column: 2;
    justify-self: end;
}

.event-image-copy-map-item:nth-child(1) {
    grid-row: 1;
}

.event-image-copy-map-item:nth-child(2) {
    grid-row: 2;
}

.event-image-copy-map-item:nth-child(3) {
    grid-row: 3;
}

.event-image-copy-map-item:nth-child(4) {
    grid-row: 4;
}

.event-image-copy-map-item:nth-child(5) {
    grid-row: 5;
}

.event-image-copy-map-subheading {
    margin: 0 0 14px;
    color: var(--primary-white);
    font-family: var(--font-family-one);
    font-size: clamp(13px, 1.15vw, 16px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.event-image-copy-map-heading {
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-family-one);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.event-image-copy-map-description {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-family-one);
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.04em;
}

.event-image-copy-map-meta {
    margin: 18px 0 0;
    color: var(--primary-white);
    font-family: var(--font-family-one);
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.12em;
}

.social-event-testimonial {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(76px, 8vw, 112px) 24px clamp(70px, 7vw, 98px);
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}

.social-event-testimonial-inner {
    width: min(100%, 1020px);
    margin: 0 auto;
}

.social-event-testimonial-quote {
    max-width: 930px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-family-one);
    font-size: clamp(24px, 2.45vw, 36px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.72;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.social-event-testimonial-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.8vw, 32px);
    margin: 42px auto 0;
    color: var(--primary-cream);
    font-family: var(--font-family-one);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.social-event-testimonial-credit span:first-child,
.social-event-testimonial-credit span:last-child {
    display: block;
    width: clamp(46px, 7vw, 96px);
    height: 1px;
    background: rgba(245, 214, 159, 0.34);
}

.social-story-hero-copy {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-story-hero-eyebrow {
    display: block;
    color: var(--primary-cream);
    font-family: var(--font-family-one);
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.social-story-hero-title {
    max-width: 780px;
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-family-one);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.social-story-hero-text {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-family-one);
    font-size: clamp(16px, 1.35vw, 21px);
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .event-page {
        padding: 130px 20px 0;
    }

    .event-page-shell {
        gap: 0px;
    }

    .event-page-image-frame,
    .event-page-image {
        min-height: 320px;
    }

    .event-page-note {
        padding: 0;
    }

    .event-page-highlights {
        grid-template-columns: 1fr;
    }

    .event-page-highlight {
        min-height: 300px;
        padding: 56px 24px;
    }

    .event-page-highlight-cta {
        width: min(100%, 276px);
    }

    .event-image-copy-map {
        min-height: auto;
    }

    .event-image-copy-map-image {
        object-position: center;
    }

    .event-image-copy-map-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.78)),
            rgba(0, 0, 0, 0.22);
    }

        .event-image-copy-map-inner {
        min-height: auto;
        display: flex;
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 72px 22px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .event-image-copy-map-item {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 520px);
        grid-column: 1;
        grid-row: auto;
    }

    .event-image-copy-map-item:nth-child(even) {
        justify-self: end;
    }

    .event-image-copy-map-heading {
        font-size: clamp(27px, 8vw, 36px);
        letter-spacing: 0.06em;
    }

    .event-image-copy-map-description {
        margin-top: 22px;
    }

    .social-event-testimonial {
        padding: 66px 20px 62px;
    }

    .social-event-testimonial-quote {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.55;
    }

    .social-event-testimonial-credit {
        flex-direction: column;
        gap: 16px;
        margin-top: 34px;
        font-size: 9px;
        letter-spacing: 0.34em;
    }

    .social-event-testimonial-credit span:first-child,
    .social-event-testimonial-credit span:last-child {
        width: 72px;
    }

    .social-story-hero-copy {
        gap: 18px;
        width: min(88vw, 620px);
    }

    .social-story-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.32em;
    }

    .social-story-hero-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .social-story-hero-text {
        font-size: 16px;
        line-height: 1.55;
    }
}
