.art-hero {
    padding: 5rem var(--edge) 2rem;
}

.art-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-bright);
}

.art-intro {
    margin-top: 1rem;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    max-width: 560px;
}

.art-subsection {
    margin-bottom: 3rem;
}

.art-subsection-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.art-year {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dim);
}

.art-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
    max-width: 640px;
    margin-bottom: 1.25rem;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--grid-gap);
}

.art-grid img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.art-grid img:hover {
    opacity: 0.8;
}

.art-grid figure {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.art-grid figcaption {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dim);
}

/* ─── New Heretics / Zine feature ─── */

.heretics-feature {
    display: flex;
    gap: 2rem;
}

.heretics-info {
    max-width: 640px;
}

.heretics-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.heretics-photo {
    max-width: 480px;
}

.heretics-photo img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.heretics-photo img:hover {
    opacity: 0.8;
}

.heretics-photo figcaption {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dim);
    margin-top: 0.75rem;
}

.pdf-viewer-wrap {
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.pdf-iframe {
    width: 100%;
    height: 85vh;
    border: none;
    background: #1a1a1a;
}

/* ─── Creative Writing pieces ─── */

.writing-pieces {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.writing-piece {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ─── Zine feature on main page ─── */

.zine-feature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    max-width: 600px;
}

.zine-feature-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.zine-feature p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 1rem;
}

.zine-feature .zine-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zine-feature .zine-links a {
    font-size: 12px;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    transition: border-color 0.15s, color 0.15s;
}

.zine-feature .zine-links a:hover {
    border-color: var(--text);
    color: var(--text-bright);
}

@media (max-width: 900px) {
    .art-hero {
        padding-top: 3rem;
    }

    .art-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}
