/* ────────────────────────────────────────────────────────────────────────
   Spectacle page — hero, sticky nav, content sections, also-see strip.
   ──────────────────────────────────────────────────────────────────────── */

.page-spectacle {
    background: #fff;
}

.spectacle {
    /* No padding here — hero is full-bleed, sections handle their own */
}

/* ─── Back link bar ────────────────────────────────────────────────── */

.spectacle-back {
    background: #fff;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.spectacle-back a {
    color: inherit;
    text-decoration: underline;
}

.spectacle-back a:hover {
    color: #000;
    text-decoration: none;
}

.spectacle-back-sep {
    margin: 0 0.5rem;
    color: #ccc;
}

/* ─── Hero ─────────────────────────────────────────────────────────── */

.spectacle-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: #000;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.spectacle-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.spectacle-hero-bg-empty {
    background: repeating-linear-gradient(
        45deg, #1a1a1a, #1a1a1a 30px, #222 30px, #222 60px
    );
}

.spectacle-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
}

.spectacle-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 3rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.spectacle-hero-premiere {
    color: #ff5252;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.spectacle-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    color: #fff;
}

.spectacle-hero-parent-title {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 0.25em;
    letter-spacing: 0.02em;
}

.spectacle-hero-own-title {
    display: block;
}

.spectacle-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 60ch;
}

.spectacle-hero-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.spectacle-hero-trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.spectacle-hero-trailer-btn:hover {
    background: #fff;
    color: #000;
}

/* ─── Hero: performance time (Electrozone event mode) ──────────────── */

.spectacle-hero-when {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

/* ─── Sticky nav ───────────────────────────────────────────────────── */

.spectacle-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.spectacle-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 64px;
}

.spectacle-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.spectacle-nav-links::-webkit-scrollbar { display: none; }

.spectacle-nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.spectacle-nav-links a:hover {
    color: #000;
}

.spectacle-nav-links a.is-active {
    color: #000;
    border-bottom-color: #000;
}

.spectacle-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.spectacle-nav-age {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #666;
}

.spectacle-nav-buy {
    background: #d40000;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    gap: 0.15rem;
}

.spectacle-nav-buy:hover { background: #b00000; }

.spectacle-nav-price {
    font-size: 0.65rem;
    opacity: 0.85;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

/* ─── Sections ─────────────────────────────────────────────────────── */

.spectacle-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.spectacle-section:last-child {
    border-bottom: none;
}

.spectacle-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem;
    letter-spacing: 0.01em;
}

/* ─── Section: About ───────────────────────────────────────────────── */

.spectacle-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 4rem;
}

.spectacle-about-main {
    min-width: 0;  /* allow text content to shrink */
}

.spectacle-premiere-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f8f8f8;
    border-left: 3px solid #d40000;
}

.spectacle-premiere-custom {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.spectacle-about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 1.5rem;
}

.spectacle-about-text p { margin: 0 0 1em; }
.spectacle-about-text p:last-child { margin-bottom: 0; }
.spectacle-about-text a { color: #000; text-decoration: underline; }
.spectacle-about-text a:hover { text-decoration: none; }

.spectacle-more {
    margin-top: 1rem;
}

.spectacle-more summary {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 0.5rem 0;
    color: #d40000;
    list-style: none;
}

.spectacle-more summary::-webkit-details-marker { display: none; }

.spectacle-more summary::after {
    content: ' ↓';
    transition: transform 0.15s;
    display: inline-block;
}

.spectacle-more[open] summary::after {
    content: ' ↑';
}

.spectacle-more-content {
    padding-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
}

.spectacle-more-content p { margin: 0 0 1em; }

/* ─── Quotes ───────────────────────────────────────────────────────── */

.spectacle-quotes {
    margin-top: 3rem;
    position: relative;
}

.spectacle-quotes-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 1.5rem;
}

.spectacle-quotes-track::-webkit-scrollbar { display: none; }

.spectacle-quote {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0;
    padding: 2rem;
    background: #f8f8f8;
    border-left: 3px solid #000;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
}

.spectacle-quote-text { margin-bottom: 1rem; }
.spectacle-quote-text p { margin: 0 0 0.75em; }
.spectacle-quote-text p:last-child { margin-bottom: 0; }

.spectacle-quote-source {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    text-align: right;
}

.spectacle-quote-source a { color: inherit; text-decoration: underline; }

.spectacle-quotes-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spectacle-quotes-prev,
.spectacle-quotes-next {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.15s, color 0.15s;
}

.spectacle-quotes-prev:hover,
.spectacle-quotes-next:hover {
    background: #000;
    color: #fff;
}

.spectacle-quotes-prev:disabled,
.spectacle-quotes-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ─── Upcoming performances sidebar ────────────────────────────────── */

.spectacle-about-sidebar {
    min-width: 0;
}

.spectacle-perfs {
    background: #fafafa;
    padding: 2rem;
    position: sticky;
    top: 84px;  /* below sticky nav */
}

.spectacle-perfs-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1.25rem;
    color: #666;
}

.spectacle-perfs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.spectacle-perf {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e8e8e8;
}

.spectacle-perf:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spectacle-perf-date {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.spectacle-perf-time {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.spectacle-perf-place {
    color: #666;
}

.spectacle-perf-which {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.spectacle-perf-buy {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.15s;
}

.spectacle-perf-buy:hover {
    background: #d40000;
}

/* ─── Section: Compound children ───────────────────────────────────── */

.spectacle-children {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.spectacle-children-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
}

.spectacle-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.spectacle-child {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.spectacle-child-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.spectacle-child:hover .spectacle-child-thumb {
    transform: scale(1.02);
}

.spectacle-child-thumb-empty {
    background: repeating-linear-gradient(
        45deg, #f5f5f5, #f5f5f5 10px, #eee 10px, #eee 20px
    );
}

.spectacle-child-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.spectacle-child-author {
    font-size: 0.85rem;
    color: #666;
}

/* ─── Section: Creators ────────────────────────────────────────────── */

.spectacle-creators-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.creator-group {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}

.creator-group-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    padding-top: 0.25rem;
}

.creator-group-people {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.creator-person {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: opacity 0.15s;
}

.creator-person:hover { opacity: 0.7; }

.creator-person-thumb {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    margin-bottom: 0.5rem;
    border-radius: 50%;
}

.creator-person-thumb-empty {
    background: #ddd;
}

.creator-person-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.creator-person-about {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* ─── Section: Performers ──────────────────────────────────────────── */

.spectacle-performers-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.performer-character {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.performer-character:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.performer-character-name {
    font-weight: 700;
    font-size: 1rem;
}

.performer-character-cast {
    font-size: 1rem;
    line-height: 1.6;
}

.performer-actor {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.performer-actor:hover {
    border-bottom-color: #000;
}

.spectacle-performers-other {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.spectacle-performers-other-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.spectacle-performers-other-content {
    line-height: 1.6;
}

/* ─── Section: Gallery ─────────────────────────────────────────────── */

.spectacle-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.media-item-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.media-item-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    position: relative;
    transition: transform 0.3s;
}

.media-item-link:hover .media-item-thumb {
    transform: scale(1.02);
}

.media-item-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.15s;
}

.media-item-link:hover .media-item-play {
    background: rgba(0, 0, 0, 0.5);
}

.media-item-body {
    padding: 0.75rem 0 0;
}

.media-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.25rem;
}

.media-item-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

/* ─── Section: Press ───────────────────────────────────────────────── */

.spectacle-press-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.press-item-link {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 1.25rem;
    border: 1px solid #f0f0f0;
    transition: border-color 0.15s, background 0.15s;
}

.press-item-link:hover {
    border-color: #000;
    background: #fafafa;
}

.press-item-category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d40000;
    margin-bottom: 0.5rem;
}

.press-item-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.press-item-author {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.press-item-meta {
    font-size: 0.75rem;
    color: #999;
}

.press-item-sep {
    margin: 0 0.4rem;
}

/* ─── Section: News ────────────────────────────────────────────────── */

.spectacle-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.news-item-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.news-item-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.news-item-link:hover .news-item-thumb {
    transform: scale(1.02);
}

.news-item-thumb-empty {
    background: repeating-linear-gradient(
        45deg, #f5f5f5, #f5f5f5 10px, #eee 10px, #eee 20px
    );
}

.news-item-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-item-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* ─── Section: Also See ────────────────────────────────────────────── */

.spectacle-also {
    background: #fafafa;
    margin: 4rem 0 0;
    padding: 4rem 2rem;
    max-width: none;
    border-bottom: none;
}

.spectacle-also-header {
    max-width: 1280px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding: 0;
}

.spectacle-also-link {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spectacle-also-link:hover {
    text-decoration: underline;
}

.spectacle-also-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem 1.5rem;
}

.also-card {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.also-card-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.also-card:hover .also-card-thumb {
    transform: scale(1.02);
}

.also-card-thumb-empty {
    background: repeating-linear-gradient(
        45deg, #f5f5f5, #f5f5f5 10px, #eee 10px, #eee 20px
    );
}

.also-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.25rem;
}

.also-card-author {
    font-size: 0.8rem;
    color: #666;
}

/* ─── Trailer modal ────────────────────────────────────────────────── */

.trailer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.trailer-modal.is-open {
    opacity: 1;
}

.trailer-iframe-wrap {
    position: relative;
    width: 90%;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
}

.trailer-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.trailer-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

.trailer-close:hover { opacity: 0.7; }

/* ─── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .spectacle-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .spectacle-perfs { position: static; }
    .creator-group { grid-template-columns: 1fr; gap: 1rem; }
    .performer-character { grid-template-columns: 1fr; gap: 0.5rem; padding-bottom: 1.5rem; }
    .performer-character-name { color: #d40000; }
}

@media (max-width: 768px) {
    .spectacle-hero { min-height: 60vh; }
    .spectacle-hero-content { padding: 2rem 1.5rem 2.5rem; }
    .spectacle-nav-inner { padding: 0 1rem; gap: 1rem; }
    .spectacle-nav-links { gap: 1.25rem; }
    .spectacle-nav-buy { padding: 0.5rem 1rem; font-size: 0.65rem; }
    .spectacle-section { padding: 2.5rem 1rem; }
    .spectacle-section-title { font-size: 1.5rem; }
    .spectacle-children-grid { grid-template-columns: repeat(2, 1fr); }
    .spectacle-also { padding: 2.5rem 1rem; }
    .trailer-close { top: 1rem; right: 1rem; }
}

/* ─── People grid (creators + performers, shared) ──────────────────── */

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.person-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.15s;
    min-width: 0;
}

.person-card:hover {
    background: #f5f5f5;
}

.person-card-thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.person-card-thumb-empty {
    background: #ddd url(/images/person-placeholder.svg) center / cover no-repeat;
}

.person-card-body {
    min-width: 0;  /* allow text to truncate inside flex */
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.person-card-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.person-card-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #666;
    line-height: 1.3;
}

/* Performers reverse the order: character (role) above, name below */
.spectacle-performers .person-card-role {
    order: -1;
}

@media (max-width: 1024px) {
    .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .people-grid { grid-template-columns: 1fr; gap: 1rem; }
    .person-card-thumb { width: 72px; height: 72px; }
}

/* ─── Performers — "А также" block stays as-is ────────────────────── */

.spectacle-performers-other {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.spectacle-performers-other-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.spectacle-performers-other-content {
    line-height: 1.6;
}