/* ============================================================
   ARTICLE CTA MOBILE
   BEM block: article-cta-mobile
   ============================================================ */

.article-cta-mobile {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 32px 20px 48px;
    background: #202020;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 769px) {
    .article-cta-mobile {
        display: none !important;
    }
}

.article-cta-mobile__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 335px;
    position: relative;
    z-index: 1;
}

.article-cta-mobile__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.72px;
    color: #fff;
    margin: 0;
    text-align: center;
    width: 100%;
}

.article-cta-mobile__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #d9d9d9;
    margin: 0;
    text-align: center;
    width: 100%;
}

.article-cta-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
    width: 100%;
    transition: background 0.2s ease;
}

.article-cta-mobile__btn--primary {
    background: #465DA6;
    border: 1px solid #465DA6;
    color: #fff;
}

.article-cta-mobile__btn--primary:hover {
    background: #3A4F8F;
    color: #fff;
}

.article-cta-mobile__btn--secondary {
    background: #fff;
    border: 1px solid #D5D7DA;
    color: #414651;
}

.article-cta-mobile__btn--secondary:hover {
    background: #f9f9f9;
    color: #414651;
}

.article-cta-mobile__watermark {
    position: absolute;
    top: 0;
    right: -25px;
    width: 149px;
    height: 249px;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.article-cta-mobile__watermark img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 610%;
    max-width: none;
}
