.article-hero {
    padding-top: 90px;
    padding-bottom: 32px;
}

.article-breadcrumb {
    font-size: 13px;
    color: var(--brand-muted);
    margin-bottom: 18px;
}

.article-breadcrumb a {
    color: var(--brand-muted);
}

.article-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 12px;
}

.article-meta {
    font-size: 13px;
    color: var(--brand-muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.article-cover {
    margin: 28px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-soft);
}

.article-content {
    max-width: 820px;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin: 24px 0 12px;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 18px 0 10px;
}

.article-content p {
    color: var(--brand-muted);
    margin-bottom: 14px;
}

.article-content ul {
    padding-left: 18px;
    margin: 14px 0 18px;
}

.article-content li {
    margin-bottom: 8px;
    color: var(--brand-muted);
}

.article-cta {
    margin-top: 32px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.article-cta h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}

.article-cta p {
    color: var(--brand-muted);
    margin-bottom: 16px;
}


/* Article variant: B */
.article-hero {
    text-align: center;
}

.article-meta {
    justify-content: center;
}

.article-cover {
    border-radius: 28px;
}
/* End article variant */

/* Media image sizing */
.article-cover img {
    width: var(--media-image-width);
    height: var(--media-image-height);
    object-fit: cover;
}
/* End media image sizing */
