:root {
    --shows-bg: #0a0a0a;
    --shows-panel: #151515;
    --shows-gold: #d0aa62;
    --shows-gold-soft: #e1c486;
    --shows-text: #f5f2eb;
    --shows-muted: #b8b4aa;
    --shows-line: rgba(255,255,255,.14);
}

.triola-shows-container {
    width: min(1420px, 92%);
    margin-inline: auto;
}

.triola-shows-hero {
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    padding: 190px 0 85px;
    background:
        radial-gradient(
            circle at 72% 25%,
            rgba(208,170,98,.18),
            transparent 42%
        ),
        #0a0a0a;
}

.triola-shows-kicker {
    color: var(--shows-gold);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.triola-shows-hero h1 {
    margin: 14px 0 22px;
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 9vw, 122px);
    font-weight: 300;
    line-height: .9;
}

.triola-shows-hero p {
    max-width: 720px;
    color: #d8d1c5;
    font-family: "Inter", sans-serif;
    font-size: 20px;
}

.triola-shows-program,
.triola-single-body {
    padding: 110px 0 130px;
    background: var(--shows-bg);
}

.triola-month-switcher {
    display: grid;
    grid-template-columns: 64px minmax(240px, 1fr) 64px;
    max-width: 720px;
    align-items: center;
    margin: 0 auto 70px;
    border-top: 1px solid var(--shows-line);
    border-bottom: 1px solid var(--shows-line);
}

.triola-month-current {
    padding: 22px 25px;
    color: var(--shows-gold-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    text-align: center;
    text-transform: lowercase;
}

.triola-month-arrow {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 0;
    color: var(--shows-gold);
    font-size: 30px;
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        opacity .25s ease;
}

.triola-month-arrow:hover:not(:disabled) {
    background: var(--shows-gold);
    color: #111;
}

.triola-month-arrow:disabled {
    opacity: .2;
    cursor: default;
}

.triola-month-panel[hidden] {
    display: none;
}

.triola-show-list {
    display: grid;
    gap: 22px;
}

.triola-show-row {
    display: grid;
    grid-template-columns: 140px 280px 1fr;
    min-height: 270px;
    overflow: hidden;
    background: var(--shows-panel);
    border: 1px solid var(--shows-line);
}

.triola-show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--shows-line);
}

.triola-show-date strong {
    color: var(--shows-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 78px;
    font-weight: 300;
    line-height: .9;
}

.triola-show-date span {
    margin-top: 14px;
    color: #999;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.triola-show-poster {
    overflow: hidden;
    background: #222;
}

.triola-show-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.triola-show-row:hover .triola-show-poster img {
    transform: scale(1.04);
}

.triola-show-poster > span {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    letter-spacing: 8px;
}

.triola-show-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 46px;
}

.triola-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: var(--shows-gold);
    font-family: "Inter", sans-serif;
    font-size: 13px;
}

.triola-show-copy h2 {
    margin: 16px 0;
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 300;
    line-height: 1;
}

.triola-show-copy p {
    color: var(--shows-muted);
    font-family: "Inter", sans-serif;
    line-height: 1.75;
}

.triola-show-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 22px;
}

.triola-show-actions > a {
    color: var(--shows-gold);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.triola-show-status {
    padding: 9px 14px;
    border: 1px solid currentColor;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.triola-show-status.is-cancelled {
    color: #d76a6a;
}

.triola-show-status.is-soldout {
    color: var(--shows-gold);
}

.triola-shows-empty {
    padding: 45px;
    background: var(--shows-panel);
    border: 1px solid var(--shows-line);
    color: var(--shows-muted);
    text-align: center;
}

.triola-single-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    padding: 190px 0 90px;
    overflow: hidden;
    background: #0a0a0a;
}

.triola-single-bg {
    position: absolute;
    inset: 0;
}

.triola-single-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.triola-single-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.95),
            rgba(5,5,5,.42)
        ),
        linear-gradient(
            0deg,
            rgba(5,5,5,.92),
            rgba(5,5,5,.08)
        );
}

.triola-single-head {
    position: relative;
    z-index: 2;
}

.triola-back-link {
    display: inline-block;
    margin-bottom: 42px;
    color: #ccc;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.triola-single-head h1 {
    max-width: 1050px;
    margin: 14px 0 38px;
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(64px, 8vw, 116px);
    font-weight: 300;
    line-height: .9;
}

.triola-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 55px;
    margin-bottom: 38px;
}

.triola-single-meta div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.triola-single-meta small {
    color: var(--shows-gold);
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;
}

.triola-single-meta strong {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.triola-ticket-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    background: var(--shows-gold);
    border: 1px solid var(--shows-gold);
    color: #111;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: background .25s ease, color .25s ease;
}

.triola-ticket-button:hover {
    background: transparent;
    color: var(--shows-gold-soft);
}

.triola-ticket-button.is-full {
    width: 100%;
    margin-top: 24px;
}

.triola-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 85px;
    align-items: start;
}

.triola-show-prose {
    color: #c7c1b7;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.85;
}

.triola-show-prose h2 {
    margin: 65px 0 22px;
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 300;
}

.triola-show-lead {
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.35;
}

.triola-show-video {
    margin: 55px 0;
}

.triola-show-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.triola-show-aside {
    position: sticky;
    top: 145px;
    padding: 35px;
    background: var(--shows-panel);
    border: 1px solid var(--shows-line);
}

.triola-show-aside h2 {
    margin-top: 0;
    color: var(--shows-text);
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 300;
}

.triola-show-aside > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 0;
    border-top: 1px solid var(--shows-line);
}

.triola-show-aside span {
    color: #999;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.triola-show-aside strong {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

@media (max-width: 980px) {
    .triola-show-row {
        grid-template-columns: 110px 220px 1fr;
    }

    .triola-single-layout {
        grid-template-columns: 1fr;
    }

    .triola-show-aside {
        position: static;
    }
}

@media (max-width: 720px) {
    .triola-month-switcher {
        grid-template-columns: 52px minmax(0, 1fr) 52px;
    }

    .triola-month-arrow {
        width: 52px;
    }

    .triola-month-current {
        padding-inline: 10px;
        font-size: 34px;
    }

    .triola-show-row {
        grid-template-columns: 1fr;
    }

    .triola-show-date {
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        padding: 20px 24px;
        border-right: 0;
        border-bottom: 1px solid var(--shows-line);
    }

    .triola-show-date strong {
        font-size: 54px;
    }

    .triola-show-date span {
        margin-top: 0;
    }

    .triola-show-poster {
        min-height: 240px;
    }

    .triola-show-copy {
        padding: 28px;
    }

    .triola-show-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


.triola-program-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.triola-program-tabs a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 20px;
    border: 1px solid rgba(208,170,98,.5);
    color: #d0aa62;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.triola-program-tabs a.is-active,
.triola-program-tabs a:hover {
    background: #d0aa62;
    color: #111;
}

.triola-related-shows {
    margin-top: 90px;
}

.triola-related-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 20px;
}

.triola-related-card {
    display: block;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255,255,255,.12);
    text-decoration: none;
    transition:
        transform .3s ease,
        border-color .3s ease;
}

.triola-related-card:hover {
    transform: translateY(-4px);
    border-color: #d0aa62;
}

.triola-related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.triola-related-card > div {
    padding: 22px;
}

.triola-related-card span {
    color: #d0aa62;
    font-family: "Inter", sans-serif;
    font-size: 11px;
}

.triola-related-card h3 {
    margin: 10px 0 0;
    color: #f5f2eb;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 300;
}

@media (max-width: 800px) {
    .triola-related-grid {
        grid-template-columns: 1fr;
    }
}
