/* ═══════════════════════════════════════════════════════════════════════════
   Single Spex page styles
   Edit freely — regenerate all Spex pages from the admin dashboard after saving.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --spex-bg:        #1a2332;
    --spex-bg-card:   #2c3e50;
    --spex-accent:    #c9a84c;
    --spex-white:     #ecf0f1;
    --spex-muted:     #bdc3c7;
    --spex-shadow:    rgba(0,0,0,0.3);
}

.cspex-single-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--spex-white);
}

/* ── Header ─────────────────────────────────────────────────────────────────── */
.cspex-single-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--spex-bg) 0%, var(--spex-bg-card) 100%);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.cspex-single-header-text {
    flex: 1;
}
.cspex-single-title {
    font-size: 3rem;
    margin: 0 0 12px;
    color: var(--spex-white);
    line-height: 1.1;
}
.cspex-single-year {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 16px;
    color: var(--spex-accent);
}
.cspex-single-generation {
    font-size: 1rem;
    color: var(--spex-muted);
    margin: 0 0 20px;
    font-family: Arial, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.cspex-single-short {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--spex-white);
    max-width: 600px;
}
.cspex-single-poster {
    flex-shrink: 0;
    width: 200px;
}
.cspex-single-poster img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 24px var(--spex-shadow);
}

/* ── Sections ───────────────────────────────────────────────────────────────── */
.cspex-single-section {
    background: var(--spex-bg-card);
    padding: 28px 32px;
    border-radius: 8px;
    margin-bottom: 28px;
}
.cspex-single-section-title {
    font-size: 1.4rem;
    color: var(--spex-accent);
    margin: 0 0 18px;
    font-family: Georgia, serif;
}

/* Plot */
.cspex-single-plot-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--spex-muted);
}

/* Roller och Scen */
.cspex-single-roller-text {
    white-space: pre-wrap;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--spex-white);
    margin: 0;
}

/* Gallery */
.cspex-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.cspex-gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.cspex-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.cspex-gallery-loading {
    color: var(--spex-muted);
    font-style: italic;
}

/* Other images */
.cspex-others-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.cspex-other-item {
    text-align: center;
}
.cspex-other-label {
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--spex-muted);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cspex-other-item img {
    max-width: 280px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--spex-shadow);
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
    .cspex-single-header { flex-direction: column-reverse; }
    .cspex-single-poster { width: 140px; }
    .cspex-single-title  { font-size: 2rem; }
    .cspex-gallery-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .cspex-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
