.cta-cluster__block {
    display: flex;
    gap: 2rem;
}

.cta-cluster__links {
    flex: 0 0 auto;
    width: calc(560 / 1280 * 100%);
    gap: 2rem;
}

.cta-cluster__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 560/202;
    background: #fff;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 2.6rem;
    color: var(--color-red);
    transition: 0.3s;
}

.cta-cluster__link-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.cta-cluster__link-icon {
    transition: 0.3s;
}

.cta-cluster__info {
    background: #fff;
}

.cta-cluster__media {
    flex: 1;
    justify-content: flex-end;
    width: 100%;
    background: #fff;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.cta-cluster__image {
    width: 100%;
    /*translate: -7%;*/
}

.cta-cluster__bg {
    border-radius: 0.8rem 0.8rem 0 0;
    overflow: hidden;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-cluster__values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    padding-block: 1rem;
    background: #fff;
    border-radius: 0 0 0.8rem 0.8rem;
}

.cta-cluster-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 10rem;
    min-width: 12rem;
    padding: 1rem;
}

.cta-cluster-value:first-child {
    margin-right: auto;
}

.cta-cluster-value__image {
    max-width: 14rem;
}

.cta-cluster-value__number {
    font-weight: 500;
    font-size: 2.4rem;
}

.cta-cluster-value__symbol {
    color: var(--color-red);
}

.cta-cluster-value__title {
    font-size: 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
    .cta-cluster__link:hover {
        box-shadow: 0 0 0.3rem 0.3rem rgb(0 0 0 / 15%)
    }

    .cta-cluster__link:hover .cta-cluster__link-icon {
        translate: 50% 0;
    }
}

@media (hover: none) {
    .cta-cluster__link:active .cta-cluster__link-icon {
        translate: 50% 0;
    }
}



@media screen and (max-width: 1024.9px) {
    .cta-cluster__values {
        display: none;
    }

    .cta-cluster__block {
        flex-direction: column;
    }

    .cta-cluster__info {
        order: -1;
    }

    .cta-cluster__links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
}

@media screen and (max-width: 767.9px) {
    .cta-cluster__links {
        display: flex;
        flex-direction: column;
    }

    .cta-cluster__link {
        aspect-ratio: unset;
        padding-block: 5rem;
    }
}

@media screen and (max-width: 575.9px) {
/*    .cta-cluster__values {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }*/
} 