.single-event-page {
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(176, 139, 87, 0.14) 0%, rgba(176, 139, 87, 0) 30%),
        linear-gradient(180deg, #070707 0%, #101010 44%, #080808 100%);
}

.single-event__hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 214px 0 124px;
    background: #080808;
}

.single-event__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.64) 48%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.single-event__hero::after {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -2;
    background: var(--single-event-hero-bg) center center / cover no-repeat;
    filter: brightness(0.44) saturate(0.92);
    transform: scale(1.04);
}

.single-event__hero-inner {
    max-width: 920px;
}

.single-event__hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.single-event__kicker {
    margin: 0;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.single-event__status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(226, 209, 163, 0.28);
    background: rgba(9, 9, 9, 0.58);
    color: rgba(226, 209, 163, 0.96);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.single-event__title {
    max-width: 980px;
    margin: 0;
    font-size: var(--hero-h1-font-size);
    line-height: 0.95;
    overflow-wrap: break-word;
}

.single-event__meta-line {
    margin: 24px 0 0;
    color: var(--bronze-light);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.single-event__intro {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.single-event__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.single-event__actions--center {
    justify-content: center;
}

.single-event__actions > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.single-event__overview {
    padding-top: 104px;
}

.single-event__overview-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: stretch;
}

.single-event__image-card,
.single-event__info-card,
.single-event__content-card,
.single-event__cta-card,
.single-event__related-card {
    border: 1px solid rgba(226, 209, 163, 0.16);
    background:
        radial-gradient(circle at top left, rgba(226, 209, 163, 0.08) 0%, rgba(226, 209, 163, 0) 42%),
        linear-gradient(180deg, rgba(17, 17, 17, 0.96) 0%, rgba(9, 9, 9, 0.98) 100%);
    box-shadow: 0 30px 62px rgba(0, 0, 0, 0.34);
}

.single-event__image-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(226, 209, 163, 0.1) 0%, rgba(226, 209, 163, 0) 56%),
        #070707;
}

.single-event__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-event__image-card--poster {
    padding: clamp(20px, 3vw, 36px);
}

.single-event__image-card--poster .single-event__image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.single-event__info-card {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(30px, 4vw, 52px);
}

.single-event__info-item {
    display: grid;
    gap: 9px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 209, 163, 0.14);
}

.single-event__info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.single-event__info-item span {
    color: var(--bronze-light);
    font-size: 11px;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.single-event__info-item strong {
    color: rgba(245, 245, 245, 0.88);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 400;
}

.single-event__info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-event__info-item a:hover,
.single-event__info-item a:focus-visible {
    color: var(--bronze-light);
}

.single-event__content-section {
    padding-top: 28px;
}

.single-event__content-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 64px);
}

.single-event__content-card h2,
.single-event__cta-card h2,
.single-event__section-head h2 {
    margin: 12px 0 0;
    color: var(--text-main);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.98;
}

.single-event__content {
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.82;
}

.single-event__content > *:first-child {
    margin-top: 0;
}

.single-event__content > *:last-child {
    margin-bottom: 0;
}

.single-event__content p,
.single-event__content ul,
.single-event__content ol,
.single-event__content blockquote {
    margin: 0 0 22px;
}

.single-event__content ul,
.single-event__content ol {
    padding-left: 1.3em;
}

.single-event__content li + li {
    margin-top: 8px;
}

.single-event__content strong {
    color: var(--text-main);
    font-weight: 600;
}

.single-event__content a {
    color: var(--bronze-light);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.single-event__content blockquote {
    padding: 22px 24px;
    border-left: 2px solid var(--bronze-light);
    background: rgba(226, 209, 163, 0.06);
    color: rgba(245, 245, 245, 0.86);
}

.single-event__cta {
    padding-top: 30px;
}

.single-event__cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 78px) clamp(28px, 5vw, 60px);
    text-align: center;
    isolation: isolate;
}

.single-event__cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top center, rgba(226, 209, 163, 0.16) 0%, rgba(226, 209, 163, 0) 42%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.single-event__cta-card h2 {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.single-event__cta-card p {
    max-width: 700px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.78;
}

.single-event__related {
    padding-top: 28px;
}

.single-event__section-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.single-event__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.single-event__related-card {
    overflow: hidden;
}

.single-event__related-media {
    height: 230px;
    background: #070707;
}

.single-event__related-media .single-event__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-event__related-media--poster {
    padding: 14px;
}

.single-event__related-media--poster .single-event__image {
    object-fit: contain;
}

.single-event__related-body {
    padding: 26px;
}

.single-event__related-date {
    margin: 0 0 10px;
    color: var(--bronze-light);
    font-size: 11px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.single-event__related-body h3 {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.04;
}

.single-event__related-body p {
    margin: 14px 0 22px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.single-event__not-found {
    min-height: 70vh;
    padding-top: 210px;
}

@media (max-width: 1100px) {
    .single-event__overview-grid,
    .single-event__related-grid {
        grid-template-columns: 1fr;
    }

    .single-event__image-card {
        min-height: 420px;
    }

    .single-event__related-grid {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .single-event__hero {
        padding: 166px 0 82px;
    }

    .single-event__meta-line {
        font-size: 12px;
        line-height: 1.6;
    }

    .single-event__actions,
    .single-event__actions--center {
        flex-direction: column;
        align-items: stretch;
    }

    .single-event__actions > a {
        width: 100%;
    }

    .single-event__overview {
        padding-top: 72px;
    }

    .single-event__image-card {
        min-height: 320px;
    }

    .single-event__image-card--poster {
        padding: 18px;
    }

    .single-event__content-card,
    .single-event__info-card,
    .single-event__cta-card {
        padding: 28px 22px;
    }

    .single-event__content,
    .single-event__cta-card p,
    .single-event__intro {
        font-size: 18px;
    }
}
