.about {
    width: 100%;
    min-height: 768px;
    max-width: 1260px;
    margin: 0px auto;
    padding: 80px 20px;
    display: flex;
    gap: 100px;
}

.about__left {
    width: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.about__reviews-container {
    display: flex;
    align-items: center;
}

.about__stars-number {
    margin-left: 9px;
    color: rgba(0, 0, 0, 0.90);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -4.18px;
}

.about__reviews {
    margin-left: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__reviews-number {
    color: rgba(0, 0, 0, 0.90);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Manrope", sans-serif;
    font-size: 11.998px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.36px;
}

.about__name {
    margin-top: 38px;
    display: flex;
}

.about__name-text1 {
    color: #000;
    font-family: "Evolventa", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about__name-text2 {
    color: #229DA4;
    font-family: "Evolventa", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about__text {
    margin-top: 10px;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
    gap: 7px;
    display: flex;
    flex-direction: column;
}

.about__tags {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 12px 9px;
    align-items: flex-end;
    align-content: flex-end;
}

.about__tag {
    height: 31px;
    border-radius: 31px;
    border: 0.75px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 14px;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.about__info {
    margin-top: 36px;
    padding-top: 26px;
    border-top: 0.75px solid rgba(0, 0, 0, 0.30);
    display: flex;
    justify-content: space-between;
}

.about__info-point {
    width: 135px;
    display: flex;
    flex-direction: column;
}

.about__info-point-number {
    color: #000;
    font-family: "Evolventa", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about__info-point-text {
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.about__info-point:nth-child(4) {
    display: none;
}

.about__right {
    flex-grow: 1;
    border-radius: 30px;
    background: url('../../images/about.jpg') center/cover no-repeat;
}

/* ===== Адаптив ===== */
@media (max-width: 1280px) {
    .about {
        gap: 20px;
    }
}


@media (max-width: 1024px) {
    .about__right {
        aspect-ratio: 1 / 1;
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .about {
        height: auto;
        max-height: none;
        min-height: 0;
        padding: 40px 20px;
        gap: 0;
    }

    .about__left {
        width: 100%;
    }

    .about__right {
        display: none;
    }

    .about__reviews-container {
        display: none;
    }

    .about__name {
        margin-top: 0;
    }

    .about__name-text1,
    .about__name-text2 {
        font-size: clamp(20px, 7vw, 30px);
    }

    .about__text {
        font-size: 18px;
    }

    .about__tags {
        flex-grow: 0;
        margin-top: 28px;
    }

    .about__info {
        flex-wrap: wrap;
        gap: 26px 0;
    }

    .about__info-point {
        width: 50%;
    }

    .about__info-point:nth-child(4) {
        display: flex;
    }

    .about__info-point-text {
        padding-left: 8px;
    }
}