/* ========= ОСНОВНОЙ ВНЕШНИЙ ОТСТУП ========= */
.section-inner {
    padding: 120px 0 60px;
    text-align: center;
}




/* ========= КОНТЕЙНЕР ========= */
.section-inner .container {
    max-width: 1180px;
    margin: 0 auto;

    background: #FAF4EC;
    border-radius: 18px;
    padding: 55px 60px;

    border: 1px solid rgba(212, 191, 161, 0.55);

    box-shadow:
            0 10px 30px rgba(0,0,0,0.18),
            0 0 0 6px rgba(255,255,255,0.05) inset;

    backdrop-filter: blur(2px);
}



/* ========= ГЛАВНЫЙ ЗАГОЛОВОК ========= */
.inner-title {
    font-size: 38px;
    letter-spacing: 0.04em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "SangBleu Sunrise", serif;

    color: #112A3F;
    margin-bottom: 10px;

    opacity: 0.95;
}



/* ========= ПОДЗАГОЛОВОК ========= */
.inner-subtitle {
    color: #8A7870;
    font-weight: 300;
    font-size: 17px;
    margin-bottom: 45px;
}



/* ========= ТЕКСТ ========= */
.inner-content {
    text-align: left;
    color: #112A3F;
    font-size: 18px;
    line-height: 1.78;
    font-weight: 300;
}



/* ========= ВНУТРЕННИЕ ЗАГОЛОВКИ ========= */
.inner-content h2 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 20px;

    color: #0F2C47;
    font-weight: 400;
    font-family: "SangBleu Sunrise", serif;

    letter-spacing: 0.02em;
}



/* ========= ССЫЛКИ ========= */
.inner-content a {
    color: #A68B75;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inner-content a:hover {
    color: #C2A88C;
}



/* ========= ФОТО/МЕДАЛЬ ========= */
.inner-medal {
    display: flex;
    justify-content: center;
    margin: 45px auto 30px;
}

.inner-medal img {
    display: block;
    height: 90px;
    opacity: 0.95;
}



/* ========= АДАПТИВ ========= */
@media (max-width: 992px) {
    .section-inner {
        padding: 80px 0 60px;
    }
    .section-inner .container {
        padding: 45px 40px;
    }

    .inner-title {
        font-size: 28px;
    }

    .inner-content {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .section-inner .container {
        padding: 35px 25px;
    }

    .inner-title {
        font-size: 20px;
    }

    .inner-content {
        font-size: 16px;
        line-height: 1.72;
    }

    .inner-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .inner-medal img {
        height: 70px;
    }
}
