.bato-cta {
    padding-block: 60px;
    background: var(--color-black);
    color: #fff;
}

.bato-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.bato-cta__content {
    width: 415px;
    gap: 5px;
}

.bato-cta__title {
    --fs: 36px;
    --ls-mult: 0.1;

    font-weight: 500;
    font-size: var(--fs);
    letter-spacing: calc(var(--fs) * var(--ls-mult));
    line-height: calc(55/36);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bato-cta__text {
    margin-bottom: 35px;
}

.bato-cta__image {
    width: 414px;
    max-width: 100%;
}

.bato-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bato-cta__btn {
    min-width: 200px;
}

@media screen and (max-width: 1024.9px) {
    .bato-cta__inner {
        flex-direction: column;
    }

    .bato-cta__content {
        align-items: center;
        text-align: center;
        margin-inline: auto;
    }
}

@media screen and (max-width: 575.9px) {
    .bato-cta__inner {
        gap: 5px;
    }

    .bato-cta__title {
        line-height: calc(40/36);
    }

    .bato-cta__text {
        padding-inline: 20px;
        margin-bottom: 20px;
    }

    .bato-cta__btn {
        min-width: unset;
    }
}