/* === Play Toolbar === */
.play-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.back-to-plays {
    font-size: 0.95rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.back-to-plays:hover {
    color: var(--text);
}

.play-print-btn {
    background: none;
    border: 1px solid #e8e4df;
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.play-print-btn:hover {
    background: #f7f5f2;
    border-color: var(--primary);
}

/* === Taxonomy Classification Widgets === */
.play-classification {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.play-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f7f5f2;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #e8e4df;
    font-size: 0.9rem;
}

.play-tag-label {
    font-weight: 600;
    color: #6b5b45;
}

.play-tag a {
    color: #3b3b3b;
    text-decoration: none;
}

.play-tag a:hover {
    text-decoration: underline;
}

/* === Play Quick Facts Bar === */
.play-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    background: #f7f5f2;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e8e4df;
}

.play-fact {
    white-space: nowrap;
}

/* === Purpose === */
.play-purpose {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #444;
}

/* === Characters === */
.play-characters {
    margin-bottom: 2rem;
}

.play-characters h3 {
    margin-bottom: 0.75rem;
}

.play-characters ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.play-characters li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.play-characters li:last-child {
    border-bottom: none;
}

/* === Prep Grid (Props / Staging / Music) === */
.play-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.play-prep-card {
    background: #f7f5f2;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e8e4df;
}

.play-prep-card h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.play-prep-card ul {
    padding-left: 1.25rem;
    margin: 0;
}

.play-prep-card li {
    margin-bottom: 0.35rem;
}

/* === Closing Prayer === */
.play-prayer {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.play-prayer h3 {
    margin-bottom: 0.75rem;
}

.play-prayer blockquote {
    border-left: 4px solid #8b6f47;
    background: #faf8f5;
    padding: 1.25rem 1.5rem;
    margin: 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

/* === Discussion Questions === */
.play-questions {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.play-questions h3 {
    margin-bottom: 0.75rem;
}

.play-questions ol {
    padding-left: 1.5rem;
}

.play-questions li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* === Play Content — Dialogue & Stage Directions === */
.play-dialogue {
    margin-bottom: 1.25rem;
}

.play-dialogue strong {
    display: inline;
    font-size: 0.95rem;
}

.play-stage-direction {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.play-cue {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

/* Scene separator */
.entry-content .wp-block-separator {
    border-top: 2px solid var(--border);
    margin: 2rem 0;
}

/* === Archive Cards === */
.play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.play-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 28px 24px;
}

.play-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.play-card-title a {
    color: inherit;
    text-decoration: none;
}

.play-card-title a:hover {
    text-decoration: underline;
}

.play-card .play-classification {
    margin-bottom: 10px;
}

.play-card .play-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
}

.play-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 12px;
}

.play-card-fact {
    font-size: 0.85rem;
    color: #6b5b45;
}

.play-card-excerpt p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* === Print === */
@media print {
    .nav,
    .nav-hamburger,
    .nav-links,
    .hero,
    .footer,
    .play-toolbar,
    .section-label-toggle {
        display: none !important;
    }

    .content-body {
        margin-top: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    body {
        background: #fff;
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .play-quick-facts {
        flex-direction: column;
        gap: 0.5rem;
    }

    .play-prep-grid {
        grid-template-columns: 1fr;
    }

    .play-grid {
        grid-template-columns: 1fr;
    }
}
