.twz-cta-small {
    --cta-small-bg: var(--grey-950, #141414);
    --cta-small-border: rgb(255 255 255 / 10%);
    --cta-small-padding: 3.3rem;
    --cta-small-title-color: var(--grey-50, #e5e2e1);
    --cta-small-text-color: rgb(255 255 255 / 70%);
    --cta-small-link-color: var(--green-500, #5aad5a);

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: var(--cta-small-padding);
    border: 0.1rem solid var(--cta-small-border);
    background-color: var(--cta-small-bg);
    transition: border-color 0.25s;

    &:is(:hover, :has(.full-link:focus-visible)) {
        --cta-small-border: var(--grey-200);
    }

    .twz-cta-small__content {
        display: flex;
        flex-direction: column;
        gap: 0.73rem;
    }

    .twz-cta-small__label {
        margin: 0;
    }

    .twz-cta-small__label-text {
        display: inline-flex;
        padding: 0.2rem 0.8rem;
        background-color: var(--green-500, #5aad5a);
        font-family: var(--font-base);
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: 0.05rem;
        text-transform: uppercase;
        color: var(--black, #000);
    }

    &.twz-cta-small--editorial .twz-cta-small__label-text {
        padding: 0.2rem 0.8rem;
    }

    .twz-cta-small__title {
        margin: 0;
        font-family: var(--font-special);
        font-size: var(--fs-32, 3.2rem);
        font-weight: 600;
        line-height: 1.1;
        text-transform: uppercase;
        color: var(--cta-small-title-color);
    }

    .twz-cta-small__text {
        margin: 0;
        font-family: var(--font-base);
        font-size: var(--fs-16, 1.6rem);
        font-weight: 400;
        line-height: 1.6;
        letter-spacing: 0.016rem;
        color: var(--cta-small-text-color);
    }

    .twz-cta-small__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .twz-cta-small__link-text {
        font-family: var(--font-base);
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.05rem;
        text-transform: uppercase;
        color: var(--cta-small-link-color);
    }

    .twz-cta-small__icon {
        display: inline-flex;
        flex-shrink: 0;
        width: 1.6rem;
        aspect-ratio: 1;
        color: var(--cta-small-link-color);

        svg {
            width: 100%;
            block-size: 100%;
        }
    }

    &.twz-cta-small--editorial {
        --cta-small-bg: rgb(90 173 90 / 10%);
        --cta-small-border: rgb(90 173 90 / 20%);

        .twz-cta-small__title {
            font-size: var(--fs-24, 2.4rem);
            font-weight: 400;
            line-height: 1.25;
        }
    }

    @media (max-width: 1024px) {
        --cta-small-padding: 2.6rem;
        gap: 4rem;

        .twz-cta-small__title {
            font-size: var(--fs-26, 2.6rem);
        }

        &.twz-cta-small--editorial .twz-cta-small__title {
            font-size: var(--fs-24, 2.4rem);
            line-height: 1.25;
        }
    }
}

