/*
 * Article Page - site26-in | chiyodareform.com
 * Reform Gate theme
 */

.article-page {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
    min-height: 100vh;
}

.article-header {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.article-header h1 { margin-bottom: 0.75rem; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--reform-charcoal);
    opacity: 0.85;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

.article-content section { margin-bottom: 2rem; }

.article-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--reform-border);
}

.article-content h3 { font-size: 1.15rem; margin: 1.25rem 0 0.5rem; }

.article-content p {
    color: var(--reform-charcoal);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.article-content ul, .article-content ol {
    margin: 0 0 1rem 1.25rem;
    color: var(--reform-charcoal);
}

.article-cta {
    background: var(--reform-white);
    border: 1px solid var(--reform-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.04);
}

.article-cta h3 { margin-bottom: 0.75rem; border: none; padding: 0; }

.article-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem;
    border-top: 1px solid var(--reform-border);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.article-navigation a {
    padding: 0.5rem 1rem;
    border: 2px solid var(--reform-teal);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.article-navigation a:hover {
    background: var(--reform-teal);
    color: var(--reform-white);
}
