/**
 * Article Page Styles (posts)
 * Modern layout that matches review pages (breadcrumbs + two-column layout).
 */

.article-page {
    padding: 1.25rem 0 2rem 0;
}

.article-page .content-layout {
    margin-top: 0.5rem; /* slightly tighter than football */
}

.article-hero {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.article-kicker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.article-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 107, 53, 0.12);
    color: #b7411b;
    text-decoration: none;
}

.article-title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
}

.article-ingress {
    margin: 0 0 1.25rem 0;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-meta a {
    color: inherit;
    text-decoration: none;
}

.article-meta a:hover {
    text-decoration: underline;
}

.article-featured {
    margin: 0 0 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.article-featured img {
    width: 100%;
    height: auto;
    display: block;
}

/* When featured image sits above the main content card (posts/pages),
   avoid making it feel like a separate "hero box" header. */
.article-page .main-content .article-featured {
    margin: 0 0 1rem 0;
}

.article-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.article-content :where(p, li) {
    color: #334155;
}

.article-content :where(h2) {
    margin-top: 1.75rem;
}

.article-content :where(h3) {
    margin-top: 1.25rem;
}

.article-content :where(img) {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.article-content :where(a) {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content :where(a:hover) {
    color: #111827;
}

/* Mobile */
@media (max-width: 768px) {
    .article-hero {
        padding: 1.25rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-content {
        padding: 1.25rem;
    }
}


