.article-cards {
    background: transparent;
    padding: 0 0 96px 0;
}

.article-cards__heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 65.6px;
    letter-spacing: 0;
    text-align: center;
    color: #02364B;
    margin-bottom: 38px;
}

.article-cards__inner {
    max-width: 1240px;
}

.article-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: transparent;
}

.article-card__image img {
    width: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.article-card__title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27.3px;
    letter-spacing: 0;
    color: #02364B;
    margin: 32px 0 0 0;
    padding: 0;
}

.article-card__title a {
    color: #02364B;
    text-decoration: none;
}

.article-card__title a:hover {
    color: #006179;
}

.article-cards__cta {
    text-align: center;
    margin-top: 56px;
}

.article-cards__cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 36px;
    border-radius: 50px;
    background: #006179;
    border: 2px solid #006179;
    color: #ACEDD9;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 27.3px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.article-cards__cta .btn:hover {
    background: #ACEDD9;
    border-color: #006179;
    color: #006179;
}

.article-cards__cta .btn:active {
    background: #02364B;
    border-color: #02364B;
    color: #ACEDD9;
}

.article-cards__cta .btn:disabled,
.article-cards__cta .btn[aria-disabled="true"],
.article-cards__cta .btn.is-disabled {
    background: #C0C0C0;
    border-color: #C0C0C0;
    color: #FBFCFC;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 992px) {
    .article-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-cards__grid {
        gap: 40px;
    }

    .article-cards__cta .btn {
        font-size: 16px;
    }

    .article-card__title,
    .article-card__title a {
        font-size: 16px;
    }

    body.home .article-card__title {
        margin: 12px 0 0 0;
    }
}

@media (max-width: 576px) {
    .article-cards__grid {
        grid-template-columns: 1fr;
    }

    .article-cards {
        padding: 72px 0;
    }

    .article-cards__heading {
        font-size: 32px;
        line-height: 1.3;
    }
}
