.article-page {
    background: #f6f3f1;
    color: #2b2b2b;
}

.article-page .container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.article-hero {
    padding: 48px 0 24px;
}

.article-kicker {
    color: #d95550;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 18px;
    color: #333;
    max-width: 900px;
}

.article-intro {
    max-width: 860px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.article-featured-image {
    padding-bottom: 28px;
}

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

.article-body {
    padding: 12px 0 40px;
}

.article-editor-content {
    max-width: 920px;
    margin: 0 auto 42px;
    font-size: 1rem;
    line-height: 1.9;
}

.article-editor-content p {
    margin-bottom: 1.2em;
}

.article-sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.article-section {
    background: transparent;
}

.article-section h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #333;
}

.article-section__text {
    font-size: 1rem;
    line-height: 1.85;
    color: #4b4b4b;
}

.article-section__text p {
    margin-bottom: 1rem;
}

.article-section--split .article-section__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: center;
}

.article-section--image-right .article-section__media {
    order: 2;
}

.article-section--image-right .article-section__content {
    order: 1;
}

.article-section__media img,
.article-full-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.article-section__media figure,
.article-full-image-wrap {
    margin: 0;
}

.article-section__media figcaption,
.article-full-image-wrap figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

.article-section--text-only,
.article-section--full-image {
    max-width: 920px;
    margin: 0 auto;
}

.article-section--full-image .article-section__text {
    margin-bottom: 20px;
}

.recent-articles {
    padding: 56px 0 72px;
    background: #efebe8;
    margin-top: 56px;
}

.section-heading-wrap h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 24px;
    color: #d95550;
}

.recent-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.article-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.article-card__image img,
.article-card__placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.article-card__content {
    padding: 18px 18px 20px;
}

.article-card__content h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #2f2f2f;
}

.article-card__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 14px;
}

.article-card__cta {
    color: #d95550;
    font-weight: 600;
}

@media (max-width: 991px) {
    .article-section--split .article-section__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-section--image-right .article-section__media,
    .article-section--image-right .article-section__content {
        order: initial;
    }

    .recent-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .article-hero {
        padding-top: 32px;
    }

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

    .article-editor-content,
    .article-section--text-only,
    .article-section--full-image {
        max-width: 100%;
    }

    .recent-articles__grid {
        grid-template-columns: 1fr;
    }

    .article-card__image img,
    .article-card__placeholder {
        height: 200px;
    }
}
