/* ─── CONTENT ITEMS (interviews & reviews) ─── */
.content-item {
    padding: 1rem 0;
    border-bottom: 1px dotted var(--border);
    animation: fadeUp 0.4s ease both;
}

.content-item:last-child {
    border-bottom: none;
}

.item-date {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

a.item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    display: block;
    line-height: 1.3;
    transition: color 0.2s;
}

a.item-title:hover {
    color: var(--rust);
}

.item-blurb {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 0.4rem;
}

.empty-notice {
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
}

/* reuse section heading style from style.css */
#interviews-section,
#editions-section,
#reviews-section {
    padding: 2rem;
}

#interviews-section {
    border-right: 1px solid var(--ink);
}

#reviews-section {
    border-right: 1px solid var(--ink);
}

#interviews-section h2,
#editions-section h2,
#reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

/* "View all" link beneath each section */
.view-all {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.view-all:hover {
    border-bottom-color: var(--rust);
}

