/* ============================================
   RESOURCES.CSS — List / News / Show Pages
   ============================================ */

.page-container {
    padding-top: 110px;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.page-title,
.landing-title,
.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-title span,
.landing-title span,
.article-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── LIST SECTION ── */
.list-section { padding: 2rem 0 5rem; }

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.list-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.list-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.list-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.list-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.list-card:hover .list-card-img img { transform: scale(1.06); }

.list-card-img .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
}

/* fallback for old list-card img direct child */
.list-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.list-card:hover > img { transform: scale(1.06); }

.card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body .date {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-body h2, .card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.card-body h2 a:hover,
.card-body h3 a:hover { color: var(--gold); }

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

/* ── PAGINATION ── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.7rem 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.page-btn:hover {
    background: var(--gold);
    color: #0d0d0d;
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ── ARTICLE / SHOW DETAIL ── */
.article-detail,
.show-landing {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--gold-border);
}

.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.article-content,
.landing-content {
    background: var(--bg-surface);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    line-height: 1.9;
    color: #c8c0b4;
    font-size: 1.05rem;
}

.article-content p,
.landing-content p { margin-bottom: 1.8rem; }

.article-content h2,
.article-content h3 {
    font-family: 'Playfair Display', serif;
    margin: 2.5rem 0 1.2rem;
    color: var(--text-primary);
}

.article-content h2 { font-size: 1.6rem; }
.article-content h3 { font-size: 1.25rem; color: var(--gold-light); }

.article-content img,
.landing-content img {
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    width: 100%;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.8rem 1.5rem;
    color: var(--text-muted);
}

.article-content li { margin-bottom: 0.5rem; }

.article-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }
.article-content a:hover { color: var(--gold-light); }

/* ── RELATED ARTICLES ── */
.related-section {
    margin-top: 5rem;
}

.related-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.related-section .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-top: 0.6rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .article-content, .landing-content {
        padding: 2rem 1.5rem;
        font-size: 0.95rem;
    }
    .list-grid { grid-template-columns: 1fr; }
    .related-section .section-title { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .list-card > img, .list-card-img { height: 190px; }
    .card-body { padding: 1.4rem; }
    .article-content, .landing-content { padding: 1.5rem 1.2rem; }
}
