.blog-cta {
    box-sizing: border-box;
    width: 100%;
    padding: 25px max(10px, calc((100% - 1140px) / 2));
    background: transparent;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.blog-cta__card {
    box-sizing: border-box;
    padding: clamp(30px, 4vw, 48px) clamp(24px, 4.2vw, 52px);
    border: 1px solid #dde8ea;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 48px -40px rgba(0, 43, 55, .45);
}

.blog-cta__card h2 {
    margin: 0 0 18px;
    color: #00556d;
    font-family: 'Urbanist', 'Segoe UI', sans-serif;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.blog-cta__card p {
    max-width: 840px;
    margin: 0 0 30px;
    color: #647a80;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
}

.blog-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 12px;
    background: #00556d;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px -20px rgba(0, 61, 79, .8);
    transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.blog-cta__btn:hover,
.blog-cta__btn:focus-visible {
    background: #003d4f;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -20px rgba(0, 61, 79, .85);
}

.blog-cta__btn:focus-visible { outline: 3px solid rgba(0, 126, 151, .38); outline-offset: 3px; }

@media (max-width: 720px) {
    .blog-cta__card { border-radius: 20px; }
    .blog-cta__btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-cta__btn { transition: none; }
}
