/* ————— ОБЩИЙ БЛОК ————— */

.section-about {
    padding: 20px 60px;
    padding-top: 120px;
    padding-bottom: 40px;
    background: transparent;
}

.section-about__inner {
    max-width: 1650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: center;
}

/* ————— ТЕКСТ ————— */

.section-about__title {
    font-family: "SangBleu Sunrise", serif;
    font-size: 33px;
    line-height: 1.32;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.section-about__subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 50px;
}

/* ————— СТАТИСТИКА ————— */

.section-about__stats {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.stat__num {
    font-size: 64px;
    font-weight: 300;
    font-family: "SangBleu Sunrise", serif;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ————— КНОПКА ————— */

.about-btn {
    display: inline-block;
    padding: 18px 38px;
    background: #0065AF;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .25s ease;
}

.about-btn:hover {
    background: #0a7be0;
}


/* ————— КАРТИНКА СПРАВА (рамка + отступ как в макете) ————— */

.section-about__image {
    display: flex;
    justify-content: flex-end;
}

.image-frame {
    padding: 14px;
    border: 2px solid #0065AF;
}

.gold-line {
    width: 86px;
    height: 3px;
    background: linear-gradient(90deg, #D4BFA1 0%, #E8DCC8 100%);
    margin: 18px 0 30px;
    opacity: 0;
    transform: translateX(-20px);
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* ————— АДАПТИВ ————— */

@media (max-width: 1200px) {
    .section-about__inner {
        grid-template-columns: 1fr 480px;
    }
}

@media (max-width: 992px) {
    .about-btn {
        margin-bottom: 40px;
    }

    .section-about {
        padding: 20px 30px;
    }

    .section-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-about__image {
        justify-content: center;
    }

    .image-frame {
        max-width: 520px;
        margin: 0 auto;
    }

    .section-about__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-about__title {
        font-size: 28px;
    }

    .section-about__subtitle {
        font-size: 18px;
    }

    .stat__num {
        font-size: 46px;
    }

    .section-about__stats {
        gap: 50px;
    }

    .section-about {
        padding-bottom: 0px;
    }
}

@media (max-width: 480px) {
    .section-about {
        padding: 0px 20px;
    }

    .section-about__title {
        font-size: 26px;
    }
}
