/* ============================================================
   ARTICLE CTA DESKTOP
   BEM block: article-cta-desktop
   ============================================================ */

.article-cta-desktop {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 80px;
    background-image: linear-gradient(61.3deg, #232323 0%, rgba(35, 35, 35, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .article-cta-desktop {
        display: none !important;
    }
}

.article-cta-desktop__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.article-cta-desktop__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.44px;
    color: #fff;
    margin: 0;
    text-align: center;
}

.article-cta-desktop__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.54px;
    color: #bfbfbf;
    margin: 0;
    text-align: center;
}

.article-cta-desktop__buttons {
    display: flex;
    gap: 24px;
}

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

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

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

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

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

.article-cta-desktop__watermark {
    position: absolute;
    top: 0;
    right: -50px;
    width: 293px;
    height: 489px;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

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