.article-detail {
    padding: 2rem 0 3rem;
}

.article-detail__header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.article-detail__date {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.article-detail__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.article-detail__excerpt {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.article-detail__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.article-detail__author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-light);
}

.article-detail__author-name {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9375rem;
}

.article-detail__author-title {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.article-detail__reading {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
}

.article-detail__cover {
    margin: 0 0 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-detail__cover img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.article-detail__content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
}

.article-detail__content.prose h2,
.article-detail__content.prose h3 {
    color: var(--navy);
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.article-detail__content.prose h2 {
    font-size: 1.5rem;
}

.article-detail__content.prose h3 {
    font-size: 1.25rem;
}

.article-detail__content.prose p {
    margin: 0 0 1.25rem;
}

.article-detail__content.prose ul,
.article-detail__content.prose ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.article-detail__content.prose li {
    margin-bottom: 0.5rem;
}

.article-detail__content.prose a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.article-detail__content.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.article-detail__author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    max-width: 760px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.article-detail__author-box-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-detail__author-box-name {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.article-detail__author-box-title {
    display: block;
    font-size: 0.8125rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.article-detail__author-box-bio {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.article-detail__related {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background: var(--bg-cream);
}

@media (max-width: 768px) {
    .page--article-detail .article-detail {
        padding: 1.25rem 0 2rem;
    }

    .page--article-detail .article-detail__header {
        margin-bottom: 1.25rem;
    }

    .page--article-detail .article-detail__title {
        font-size: clamp(1.5rem, 6vw, 1.875rem);
    }

    .page--article-detail .article-detail__excerpt {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .page--article-detail .article-detail__cover {
        margin-bottom: 1.5rem;
    }

    .page--article-detail .article-detail__content {
        font-size: 1rem;
    }

    .page--article-detail .article-detail__author-box {
        margin-top: 2rem;
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page--article-detail .article-detail__related {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }
}
