.info-block {
    padding: 130px 0;
}

.info-block__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.info-block__text {
    max-width: 650px;
}

.info-block__label {
    display: inline-block;
    font-size: clamp(16px, 0.185vw + 15.33px, 18px);
    background: #ffe6eb;
    color: #e5002b;
    font-weight: 600;
    padding: 0.3em 0.9em;
    border-radius: 999px;
    margin-bottom: 1em;
}

.info-block__title {
    font-size: clamp(32px, 4.44vw + 16px, 80px);
    font-weight: 800;
    color: #e5002b;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.info-block__desc {
    font-size: clamp(18px, 0.556vw + 16px, 24px);
    line-height: 1.6;
    color: #000;
    max-width: 600px;
    font-weight: bold;
}

.info-block__images {
    position: relative;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.info-block__img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}


@media screen and (max-width: 1350px) {
    .info-block__images {
        max-width: 374px;
    }

    .info-block__text {
        max-width: 576px;
    }
}

@media screen and (max-width: 1024px) {

    .info-block__images,
    .info-block__desc,
    .info-block__text {
        max-width: 100%;
    }
    .info-block__img {
        aspect-ratio: 1 / 1; 
    }
}