.article-cta {
    background: #FCF5FC;
}

.article-cta__content {
    background: #8D2A8F;
    border-radius: 25px;
    padding: 60px 80px 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-cta__tooth {
    position: absolute;
    background: url("../img/normal-tooth.png") no-repeat center / contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.article-cta__tooth--left {
    width: 200px;
    height: 270px;
    top: 50%;
    left: -15px;
    transform: translateY(-50%) rotate(19deg);
}

.article-cta__tooth--right {
    width: 200px;
    height: 250px;
    top: 120%;
    right: -15px;
    transform: translateY(-50%) rotate(-21deg);
}

.article-cta__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 56px;
    letter-spacing: 0;
    text-align: center;
    color: #FCF5FC;
    margin: 0;
    position: relative;
    z-index: 2;
}

.article-cta__button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 14px 36px;
    background: linear-gradient(180deg, #DA81DB 0%, #A642A8 100%);
    border-radius: 10px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 129, 219, 0.4);
}

@media (max-width: 1024px) {
    .article-cta__content {
        border-radius: 20px;
        padding: 50px 60px;
        gap: 35px;
    }

    .article-cta__title {
        font-size: 34px;
        line-height: 46px;
        font-weight: 700;
    }

    .article-cta__button {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 20px;
        border-radius: 8px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .article-cta__content {
        border-radius: 20px;
        padding: 40px 20px;
        gap: 25px;
        align-items: flex-start;
    }

    .article-cta__title {
        font-size: 23px;
        line-height: 27px;
        font-weight: 700;
        text-align: left;
    }

    .article-cta__button {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 20px;
        border-radius: 8px;
        margin-top: 0;
        width: 100%;
    }
}