.article-max-group-cta {
    width: min(100%, 760px);
    margin: clamp(20px, 3vw, 30px) auto;
}

.article-max-group-cta__button {
    display: flex;
    flex-direction: column;
    min-height: 82px;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 15px clamp(16px, 4vw, 30px);
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--primary-color, #9f1239), var(--primary-dark, #6f0d2a));
    box-shadow:
        0 12px 28px rgba(30, 41, 59, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-family: inherit;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

html body .article-max-group-cta a.article-max-group-cta__button,
html body .article-max-group-cta a.article-max-group-cta__button:visited {
    color: #ffffff !important;
}

.article-max-group-cta__line {
    display: block;
    white-space: nowrap;
}

.article-max-group-cta__line + .article-max-group-cta__line {
    margin-top: 3px;
}

html body .article-max-group-cta a.article-max-group-cta__button:hover {
    color: #ffffff !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(30, 41, 59, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

html body .article-max-group-cta a.article-max-group-cta__button:focus-visible {
    color: #ffffff !important;
    outline: 3px solid var(--accent-color, #d6a300);
    outline-offset: 3px;
}

.article-max-group-cta__button:active {
    transform: translateY(0);
}

html[data-effective-theme="dark"] .article-max-group-cta__button {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (max-width: 600px) {
    .article-max-group-cta {
        width: 100%;
        margin: 18px auto 24px;
    }

    .article-max-group-cta__button {
        min-height: 74px;
        padding: 13px 10px;
        border-radius: 14px;
        font-size: clamp(13px, 3.6vw, 17px);
        line-height: 1.28;
    }
}

@media (max-width: 340px) {
    .article-max-group-cta__button {
        padding-inline: 7px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-max-group-cta__button {
        transition: none;
    }
}
