.article-main {
    padding: 56px 0 72px;
}

.article-shell {
    width: min(calc(100% - 32px), 920px);
}

.article-card {
    padding: 26px 28px 34px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.article-card--missing {
    text-align: center;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.article-featured-image {
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(8, 42, 56, .98), rgba(27, 149, 164, .92));
    box-shadow: 0 12px 30px rgba(4, 29, 49, .08);
}

.article-featured-image img {
    display: block;
    width: 100%;
    height: min(72vh, 560px);
    max-height: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: center center;
    background: transparent;
}

.article-card > h1 {
    margin: 0 0 22px;
    color: #102d3a;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 900;
    line-height: 1.1;
}

.article-content {
    color: #333333;
    font-size: 17px;
    line-height: 1.8;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #025f66;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    line-height: 1.25;
}

.article-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    border-radius: 5px;
}

.article-content figure {
    margin: 22px 0;
}

.article-content a {
    color: #025f66;
    text-decoration: underline;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.article-tags span,
.article-tags a {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid #d5d1d1;
    border-radius: 999px;
    color: #102d3a;
    background: #f6f8fa;
    font-size: 13px;
}

.article-tags a:hover {
    color: #ffffff;
    background: #102d3a;
    border-color: #102d3a;
}

.article-actions {
    margin-top: 28px;
}

.article-cta {
    margin-top: 34px;
    padding: 28px 24px;
    border: 1px solid #dbe5eb;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbfc, #eef5f7);
}

.article-cta__eyebrow {
    margin: 0 0 10px;
    color: #0b6b77;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.article-cta h2 {
    margin: 0 0 12px;
    color: #102d3a;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
}

.article-cta > p:last-of-type {
    margin: 0;
    color: #526a77;
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.article-cta__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.article-cta-card {
    padding: 18px 16px;
    border: 1px solid #d5dfe5;
    border-radius: 18px;
    background: #ffffff;
}

.article-cta-card__eyebrow {
    margin: 0 0 10px;
    color: #0b6b77;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.article-cta-card h3 {
    margin: 0 0 10px;
    color: #102d3a;
    font-size: 1.05rem;
    font-weight: 800;
}

.article-cta-card p {
    margin: 0 0 14px;
    color: #526a77;
    font-size: 14px;
    line-height: 1.7;
}

.article-cta-card a {
    color: #0b6b77;
    font-weight: 700;
    text-decoration: none;
}

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

@media (max-width: 820px) {
    .article-card {
        padding: 22px 20px 28px;
    }

    .article-cta {
        padding: 22px 18px;
    }

    .article-cta__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .article-content {
        font-size: 16px;
    }
}
