@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@200;300;400;500;600&display=swap');

:root {
    --primary: #B91C1C;
    --text: #111;
    --muted: #666;
    --border: #ddd;
    --bg-light: #E6E6E6;
}

/* Базовые стили */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Geologica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    font-size: 16px;
}

/* Главный контейнер */

.page{
    padding-top: 0;
}
.container {
    width: 90%;
    margin: 0 auto;
}


.school {
    margin: 0 auto;
    padding: 0 0 80px;
}

.section__content
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 2.7vw;
    align-items: center;
}

.speakers .section__title
{
    margin: 0;
}

/* Общие заголовки секций */
.section__title {
    font-size: 2.6vw;
    font-weight: 200;
    margin: 0 0 2.7vw;
    line-height: 105%;
}


/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 3.2vw;
    padding: 0 24px;
    font-size: 1vw;
    font-weight: 300;
    text-decoration: none;

    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn__icon {
    width: 2.1vw;
    height: 2.1vw;
}
.contact__info{
    display: flex;
    align-items: center;
    gap: 0.55vw
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn--primary:hover {
    background: #991515;
    border-color: #991515;
}
.btn__outline {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn__outline:hover img {
    filter: invert(1) brightness(1.15) contrast(1.05);
    mix-blend-mode: normal;
    opacity: 1;
}

.btn__outline:hover {
    background: var(--text);
    color: #fff;
}
.btn--outline {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--text);
}

.btn--outline:hover {
    background: var(--text);
    color: #fff;
}

/* ============= ГЕРОЙ-СЕКЦИЯ ============= */
.hero {
    padding: 0 0 5.2vw;
}
.hero__header {
    font-size: 70px;
    font-weight: 200;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--gap);
    align-items: start;

}
.hero__logo{
    margin: auto;

}
/* Левая колонка — логотип */
.hero__logo img {
    width: 16.2vw;
    height: 20.5vw;
    display: block;
}

/* Центральная колонка — старт + кнопки */
.hero__center {
    display: flex;
    flex-direction: column;
    gap: 10.5vw;
    height: 100%;
    justify-content: space-between;
}

.hero__subtitle {
    font-size: 1.8vw;
    font-weight: 300;
    margin: 0;
    line-height: 105%;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

/* Правая колонка — описание */
.hero__title {
    line-height: 105%;
    font-size: 1.8vw;
    font-weight: 300;
    margin: 0 0 1.1vw;

}

.hero__desc {
    line-height: 105%;
    margin: 0 0 0.7vw;
    font-size: 1vw;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hero__desc strong {
    font-weight: 500;
}

.hero__program_title {
    margin: 1.6vw 0 0.6vw;
    font-size:  1.8vw;
    font-weight: 300;
}

.hero__program_list {
    line-height: 105%;
    margin: 0;
    padding-left: 20px;
    list-style: disc;
    font-size: 1vw;
    font-weight: 300;
    letter-spacing: -0.03em;
}
.hero__right{
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
    grid-column: 3 / 5;
}

/* ============= СПИКЕРЫ ============= */
.speakers {
    padding-bottom: 60px;
}

.speakers__slider {
    overflow: hidden;
}

.speakers__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}


.speaker img {

    width: 100%;
    height: 21.8vw;
    object-fit: cover;
    display: block;

}

.speaker__name {
    margin: 0.6vw 0 0.2vw;
    font-size: 1.6vw;
    font-weight: 400;
}

.speaker__role {
    margin: 0;
    font-size: 1vw;
    color: black;
    line-height: 1.4;
}

/* ============= ФОРМА РЕГИСТРАЦИИ ============= */
.register {
    padding: 1vw;
    background: var(--bg-light);
    margin: 3.1vw 0;

}

.register__grid {
    display: grid;
    grid-template-columns: 18.5vw 1fr;
    gap: 3.1vw;
}

.register__info h3 {
    margin: 0 0 1.1vw;
    font-size: 1.6vw;
    font-weight: 400;
    line-height: 105%;
}

.price {
    font-weight: 300;
    margin: 0 0 1.7vw;
    font-size: 1.2vw;
    line-height: 1.5;
}
.price_count
{
    font-weight: 400;
    font-size: 1.55vw;
}

.price strong {
    display: block;
    font-size: 1.6vw;
    color: var(--text);
    margin-top: 0.2vw;
}

.register__form {
    display: grid;
    gap: 0.9vw;
}

.register__form .section__title {
    font-size: 1.6vw;
    font-weight: 400;
    margin: 0 0 1vw;
}

.register__form input,
.register__form textarea {
    height: 3.2vw;
    width: 100%;
    padding: 0.7vw 0.8vw;
    font-size: 1vw;
    font-family: inherit;
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9vw;
}
.form__row_second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9vw;
}
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
    font-size: 0.9vw;
    line-height: 1.4;
    font-weight: 300;
}

.checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 0.9vw;
    height: 0.9vw;
    margin-top: 0.2vw;
    margin-inline: 0;   
}

/* ============= ОТЗЫВЫ ============= */
.reviews {
    padding: 3vw 0;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7vw 2.1vw;
}
.form__row_thirdy{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9vw;
}
.btn__primary{
    width: 61%;
}
.btn.btn__primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn.btn__primary:hover {
    background: #991515;
    border-color: #991515;
}
.review {
    padding: 0 1.2vw  0 1.6vw;  /* увеличили левый паддинг под полоску */

    border-left: 1px solid var(--text);  /* жирная левая полоска */

    position: relative;


}

.review__author {
    margin: 0 0 4px;
    font-size: 1.6vw;
    font-weight: 400;
    line-height: 105%;
}

.review__date {
    margin: 0 0 0.7vw;
    font-size: 0.8vw;
    color: black;
    font-weight: 300;
    line-height: 105%;
}

.review__text {
    margin: 0;
    font-size: 1.2vw;
    line-height: 105%;
    font-weight: 300;
}

/* ============= АРХИВ ВОРКШОПОВ ============= */
.archive {
    padding: 3.1vw 0;
}

.archive__grid {
    display: grid;
    grid-template-columns: 2fr minmax(20.2vw, 1fr) minmax(20.2vw, 1fr);
    gap: var(--gap);
}

.workshop {
    display: flex;
    flex-direction: column;
}


.workshop img {
    height: 30.5vw;
    width: 100%;
    object-fit: cover;
    display: block;

}

.workshop__title {
    margin: 0.7vw 0 0.4vw;
    font-size: 1.2vw;
    font-weight: 300;
    line-height: 1.4;
}

.workshop__date {
    margin: 0;
    font-size: 1.2vw;
    color: black;
    font-weight: 300;
}

.archive__actions {
    margin-top: 1.8vw;
    text-align: end;
}

.archive__actions .btn {
    width: 21.5vw;
    height: 3.1vw;
}

.btn--outline:hover img {
    filter: invert(1) brightness(1.15) contrast(1.05);
    mix-blend-mode: normal;
    opacity: 1;
}
/* ============= КОНТАКТЫ ============= */
.contacts{
    padding: 3.1vw 0 5.3vw;
}
/*.contacts__grid{*/
/*    display: grid;*/
/*    grid-template-columns: 23.5vw 1fr;*/
/*    gap: 3.2vw;*/
/*}*/

/* Список контактов */
.contacts__list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8vw 2.72vw;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 4fr;
}

/* Отдельный контакт-блок */
.contact__item{
    display: flex;
    align-items: flex-start;
    gap:  0.8vw;
    padding: 0.9vw 1vw;
    background: var(--bg-light);

}

.contact__icon{
    width: 2vw;
    height: 2vw;
    flex-shrink: 0;
    display: block;
}


.contact__row{
    flex: 1;
    display: flex;
    gap: 13vw;
    align-items: center;
}

.contact__label{
    font-weight: 300;
    font-size: 1.2vw;
    color: black;
    white-space: nowrap;
    min-width: 6.2vw;
    line-height: 105%;
}

.contact__data{
    flex: 1;
    font-size: 1vw;
    line-height: 105%;
    color: var(--text);
    font-weight: 300;
    letter-spacing: -0.03em;
    /* white-space: pre-line; */
    display: flex;
    gap: 0.2vw;
    flex-direction: column;
    line-height: 1.2;
}

.contact__data a{
    color: inherit;
    text-decoration: none;
}
.contact__data a:hover{
    text-decoration: underline;
}

/* Карта */
.contacts__map{
    width: 100%;
    overflow: hidden;
}
.contacts__map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}
.mobile_speakers{
    display: none;
}
.tablet_speakers{
    display: none;
}
.contacts__map{
    grid-column: 2 / 2;
    grid-row: 1 / 6;
}





/* ============= АДАПТИВ ============= */

/* ============= МОБИЛЬНЫЙ АДАПТИВ 360–767 ============= */
@media (max-width:767px){

    /* Общий контейнер */
    .school{
        max-width: min(100%, 767px);
        padding: 0 clamp(12px, 3vw, 20px) clamp(36px, 9vw, 50px);
        margin: 0 auto;
    }

    /* Заголовки секций */
    .section__title{
        font-size: 8vw;
        font-weight: 300;
        margin: 0 0 5.5vw;
        line-height: 105%;
    }

    /* Кнопки */
    .btn{
        height: 11vw;
        font-size: 3.5vw;
        padding: 0 16vw;
    }

    /* ===== ГЕРОЙ-СЕКЦИЯ ===== */
    .hero{
        padding: 4vw 0 16vw 0;
    }
    .hero__header{
        font-size: clamp(30px, 5.5vw, 40px);
    }
    .hero__logo{
        margin: clamp(24px, 8vw, 36px) auto 0;
        text-align: center;
    }
    .hero__logo img{
        width: 43vw;
        height: 55vw;
        margin: 0 auto;
    }
    .hero__grid{
        display: flex;
        flex-direction: column;
        gap: 5.5vw;
    }

    /* Центральная колонка */
    .hero__center{
        width: 100%;
        gap: 5.5vw;
    }
    .hero__subtitle{
        font-size: 6.1vw;
        text-align: start;
        line-height: 105%;
        letter-spacing: -0.03em;
    }
    .btn__icon{
        height:6.5vw;
        width:6.5vw;
    }

    .hero__actions{
        gap: 2.5vw;
    }

    /* Правая колонка */
    .hero__title{
        font-size: 6.1vw;
        margin: 0 0 4vw;
    }
    .hero__desc{
        font-size: 4.5vw;
        margin: 0 0 3vw;
    }
    .hero__program_title{
        font-size: 6.1vw;
        margin: 6vw 0 4vw;
    }
    .hero__program_list{
        font-size: 4.5vw;
        line-height: 105%;
    }

    /* ===== МОБИЛЬНЫЙ СЛАЙДЕР СПИКЕРОВ ===== */
    .mobile_speakers{
        display: block;
        padding:  0;
        position: relative;
        overflow: hidden;
    }
    .speakers{
        display: none;
    }

    .mobile_speakers__header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4.5vw;
    }
    .mobile_speakers__header .section__title{
        font-size:8vw;
        margin: 0;
    }

    .mobile_speakers__dots{
        display: flex;
        gap: clamp(6px, 1.5vw, 10px);
    }
    .mobile_speakers__dots .dot{
        width: clamp(8px, 2vw, 12px);
        height: clamp(8px, 2vw, 12px);
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: background .3s ease;
    }
    .mobile_speakers__dots .dot.is_active{
        background: var(--primary);
    }

    .mobile_speakers .work_slider__track{
        display: flex;
        transition: transform 0.4s ease;
        will-change: transform;
        gap: 5.5vw;
    }
    .mobile_speakers .work_slider__slide{
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .mobile_speaker{
        text-align: start;
    }
    .mobile_speaker img{
        width: 100%;
        height: 58vw;
        margin: 0 auto;
        object-fit: cover;
        display: block;
    }
    .mobile_speaker__name{
        font-size: 5vw;
        font-weight: 400;
        margin: 2.5vw 0 0;
        line-height: 105%;
    }
    .mobile_speaker__role{
        font-weight: 300;
        font-size: 4.5vw;
        color: black;
        margin: 0;
        line-height: 1.4;
    }

    /* ===== ФОРМА РЕГИСТРАЦИИ ===== */
    .register{
        padding: 2.8vw;
        margin: 16vw 0 16vw;
    }
    .register__grid{
        display: flex;
        flex-direction: column;
        gap: 4.5vw;
    }
    .register__info h3{
        font-size: 5.5vw;
        margin: 0 0 5.5vw;
    }
    .price{
        font-size: 4.4vw;
        margin: 0 0 4vw;
    }
    .price_count
    {
        font-size: 5vw;
    }
    .price strong{
        font-size: clamp(18px, 4.5vw, 22px);
    }

    .register__form .section__title{
        font-size: 5.5vw;
        font-weight: 400;
        margin: 0 0 5.5vw;
    }
    .register__form input,
    .register__form textarea{
        height: auto;
        padding: 2.5vw;
        font-size: 4.5vw;
        margin-bottom: 1.5vw ;
    }
    .checkbox input[type="checkbox"]{
        width: 5vw;
        height: 5vw;
    }
    .form__row{
        grid-template-columns: 1fr;
        /*gap: 2.5vw;*/
    }
    .checkbox{
        width: 100%;
        gap: 2.5vw;
    }
    .btn__primary{
        width: 100%;
    }
    .form__row_second{
        display: flex;
        flex-direction: column;
        /*gap: 2.5vw;*/

    }
    .form__row_thirdy{
        gap: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .checkbox{
        font-size: 4.5vw;
        margin-top: 3vw;
    }
    .checkbox input[type="checkbox"]{
        margin-top: 0.7vw;
    }

    /* ===== ОТЗЫВЫ (ТОЛЬКО ПЕРВЫЕ 2) ===== */
    .reviews{
        padding:  0;
    }
    .reviews__grid{
        display: flex;
        flex-direction: column;
        gap:5.5vw;
    }

    .review{
        padding: 0 0 0 4vw;
        border-left: 1px solid var(--text);
    }
    .review:nth-child(n+3){
        display: none;
    }

    .review__author{
        font-size: 6vw;
    }
    .review__date{
        font-size: 4.5vw;
        margin: 0 0 5.5vw;
    }
    .review__text{
        font-size: 5vw;
        line-height: 105%;
    }

    /* ===== АРХИВ ВОРКШОПОВ ===== */
    .archive{
        padding: 8.5vw 0;
    }

    .archive__grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5.5vw;
    }

    .workshop:nth-child(1),
    .workshop:nth-child(2){
        grid-column: span 1;
        line-height: 4vw;
    }
    .workshop:nth-child(1) img,
    .workshop:nth-child(2) img{
        height: 59vw;
        aspect-ratio: 150 / 222;
        object-fit: cover;
    }

    .workshop:nth-child(3){
        grid-column: 1 / -1;
        line-height: 4vw;
    }
    .workshop:nth-child(3) img{
        width: 100%;
        height: 81vw;
        aspect-ratio: 320 / 220;
        object-fit: cover;
    }

    .workshop__title{
        font-size: 4.5vw;
        margin: 3vw 0 0;
        line-height: 1.3;
    }
    .workshop__date{
        font-size: 4.5vw;
    }

    .archive__actions{
        margin-top: 5.5vw;
    }
    .archive__actions .btn{
        font-size: 3.5vw;
        height: 11vw;
        width: 100%;
    }
    .archive__actions .btn img{
        width: 3.5vw;
        height: 3.5vw;
    }

    /* ===== КОНТАКТЫ ===== */
    .contacts{
        padding: 8.3vw 0 16.5vw;
    }
    /*.contacts__grid{*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    gap: 5.5vw;*/
    /*}*/


    .contact__icon{
        width: 7vw;
        height: 6.8vw;
    }
    .contact__info{
        gap: 2.8vw;
        width: 45%;
    }
    .contact__row{
        flex-direction: row;
        justify-content: space-between;
        gap: 2.8vw;
    }
    .contact__label{
        font-weight: 300;
        min-width: auto;
        font-size: 5vw;
    }
    .contact__data{
        font-size: 3.8vw;
        display: flex;
        white-space: normal;
        flex-direction: column;
        gap: 1vw;
    }

    .contacts__map{
        width: 100%;
        height: 61.5vw;
    }
    .contact__item{
        padding:3vw;
    }
    .contacts__list{
        grid-template-rows: 5fr;
        grid-template-columns: 1fr;
        gap: 2.8vw;
    }
    .contacts__map{
        grid-column: 1/1;
        grid-row: 6 / 6;
    }
}
@media (min-width:768px) and (max-width:1024px){

    /* Общий контейнер — от 720px до 100% */
    .page .hero
    {
        padding: 2vw 0 5.2vw;
    }
    .container{
        min-width: 36vw;
        width: 100%;
        background-position: center;
        width: calc(100% - 40px);
    }

    .school{
        max-width: min(100%, 1024px);

        margin: 0 auto;
    }
    .hero__center{
        gap: 7.3vw;
    }


    /* Заголовки секций */
    .section__title{
        font-size: 4.55vw;
        font-weight: 300;
        margin: 0 0 4vw;
        line-height: 105%;
    }


    /* Кнопки */
    .btn{
        height: 6vw;
        font-size: 1.3vw;
        padding: 1vw 9vw;
    }

    /* ===== ГЕРОЙ-СЕКЦИЯ ===== */

    .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 4vw var(--gap);
        align-items: start;
    }
    .hero__header{
        margin: 0 0 60px;
        font-size: clamp(50px, 5vw, 55px);
    }
    .hero__logo img{
        width: 30vw;
        height: 38vw;
    }
    .hero__logo{
        margin: auto;
    }

    .hero__right{
        grid-column: 1/3;
    }
    .hero__subtitle{
        font-size: 3.15vw;
        width: 80%;
    }
    .hero__actions{
        gap: 1.6vw;
    }

    .hero__title{
        font-size: 3.15vw;
        margin: 0 0 2.5vw;
    }
    .hero__desc{
        font-size: 2.3vw;
        margin: 0 0 1.5vw;
    }
    .hero__program_title{
        font-size: 3.15vw;
        margin: 3vw 0  1.5vw;
    }
    .hero__program_list{
        font-size: clamp(18px, 2vw, 20px);
        line-height: 110.00000000000001%;
    }

    /* ===== ПЛАНШЕТНЫЙ СЛАЙДЕР СПИКЕРОВ (2 ФОТО) ===== */
    .tablet_speakers{
        display: block;
        padding: 5.2vw 0;
        position: relative;
        overflow: hidden;
    }
    .speakers,
    .mobile_speakers{
        display: none;
    }

    .tablet_speakers__header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4vw;
    }
    .tablet_speakers__header .section__title{
        margin: 0;
    }

    .tablet_speakers__dots{
        display: flex;
        gap:  1.2vw;
    }
    .tablet_speakers__dots .dot{
        width:  1.5vw;
        height:  1.5vw;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: background .3s ease;
    }
    .tablet_speakers__dots .dot.is_active{
        background: var(--primary);
    }

    .tablet_speakers .work_slider__track{
        display: flex;
        transition: transform 0.4s ease;
        will-change: transform;
        gap: 3vw;
    }

    /* Один слайд показывает 2 фотографии */
    .tablet_speakers .work_slider__slide{
        flex: 0 0 100%;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap:  3vw;
        box-sizing: border-box;
    }

    .tablet_speaker{
        text-align: start;
    }
    .tablet_speaker img{
        width: 100%;
        display: block;
    }
    .tablet_speaker__name{
        font-size: 3vw;
        font-weight: 400;
        margin: 1.5vw 0 0.6vw;
    }
    .tablet_speaker__role{
        font-weight: 300;
        font-size:2.4vw;
        color: black;
        margin: 0;
        line-height: 110.00000000000001%;
    }

    /* ===== ФОРМА РЕГИСТРАЦИИ ===== */
    .register{
        padding: 2.8vw 2.8vw;
        margin: 5.2vw 0;
    }

    /* Вертикальная раскладка: всё в одну колонку */
    .register__grid{
        display: flex;
        flex-direction: column;
        gap: 6.8vw;
    }

    /* Блок стоимости: горизонтально две колонки */
    .register__info {
        display: block;
    }
    .register__info h3{
        font-size: 4vw;
        margin: 0;
    }
    .prices-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6vw;
        margin-top:4vw;

    }
    .prices-grid p {
        font-size: 3.2vw;
    }
    .price_count
    {
        font-size: 3.2vw;
        line-height: 105%;
    }

    .price {
        margin: 0;
    }
    /* Цены в одну строку */
    .register__pricing{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .price{
        margin: 0;
    }
    .price__label{
        font-size: clamp(25px, 2.2vw, 30px);
        font-weight: 300;
        margin: 0 0 clamp(6px, 1vw, 8px);
    }
    .price__value{
        font-size: clamp(25px, 3vw, 26px);
        font-weight: 400;
        margin: 0;
    }

    /* Форма */
    .register__form .section__title{
        font-size: 4vw;
        font-weight: 400;

    }
    .register__form{
        display: grid;
        gap: clamp(14px, 2.5vw, 18px);
    }
    .register__form input,
    .register__form textarea{
        padding: clamp(12px, 2vw, 14px) clamp(14px, 2.2vw, 16px);
        font-size: clamp(18px, 1.8vw, 20px);
    }

    .register__form input,
    .register__form textarea {
        height: 6vw;
        width: 100%;
    }
    .form__row{
        display: flex;
        flex-direction: row;
        grid-template-columns: 1fr 1fr;
        gap: clamp(14px, 2.5vw, 18px);
    }
    .form__row_second{
        display: flex;
        flex-direction: column;
        gap: clamp(14px, 2.5vw, 18px);
    }
    .form__row_thirdy{
        gap: clamp(35px, 3.5vw, 40px);
        display: flex;
        flex-direction: row;
    }
    .register__form input[type="email"],
    .register__form textarea{
        width: 100%;
    }
    .checkbox{
        margin-top: 0;
        font-size:2vw;
    }

    .checkbox input[type="checkbox"]{
        margin-top: 0;
        width: 2.5vw;
        height: 2.5vw;
    }

    /* ===== ОТЗЫВЫ (2 КОЛОНКИ) ===== */
    .reviews
    {
        padding: 5.2vw 0;
    }

    .reviews__grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw 5vw;
    }

    .review{
        padding: 0 0 0 3.5vw;
        border-left: clamp(1px, 0.5vw, 1px) solid var(--text);

    }

    .review__author{
        font-size: 3.2vw;
    }
    .review__date{
        font-size: 2.4vw;
        margin: 0 0 2.8vw;
    }
    .review__text{
        font-size: 2.4vw;
        line-height: 105%;
    }
    .contacts
    {
        padding: 5.2vw 0 10.4vw;
    }
    /* ===== АРХИВ ВОРКШОПОВ (3 КОЛОНКИ) ===== */
    .archive{
        padding: 5.2vw 0;
    }

    .archive__grid{
        display: grid;
        grid-template-columns: 2fr minmax(21.8vw, 1fr) minmax(21.8vw, 1fr);
        gap: 2.8vw;
        align-items: start;
    }

    .workshop img{
        width: 100%;
        object-fit: cover;
        display: block;
    }


    .workshop__title{
        font-size: 2.4vw;
        margin: 1.5vw 0 0;
        line-height: 1.4;
        overflow-wrap: break-word;
    }
    .workshop__date{
        font-size: 2.4vw;
    }

    .archive__actions{
        margin-top: clamp(24px, 4vw, 32px);
        text-align: end;

    }
    .archive__actions .btn{
        width: 50%;
        height: 5.9vw;
    }

    /* ===== КОНТАКТЫ (2 КОЛОНКИ) ===== */

    /*.contacts__grid{*/
    /*    display: grid;*/
    /*    grid-template-columns: clamp(350px, 42vw, 450px) 1fr;*/
    /*    gap: 2.7vw;*/
    /*}*/

    .contacts__list
    {
        grid-template-columns: 1fr;
        column-gap: 2.8vw;
    }
    .contact__item{
        padding: 2vw;
        width:100%;
        gap: 2vw;
        grid-column: 1/2;
    }
    .vk{
        grid-column: 1/2;
    }
    .contact__icon{
        width: clamp(24px, 3.5vw, 28px);
        height: clamp(24px, 3.5vw, 28px);
    }
    .contact__row{
        gap: 5.4vw;
        display: flex;
        flex-direction: row;
    }
    .contact__info
    {
        gap: 1.4vw;
        width: 45%;
    }
    .contact__label{
        font-size: 2.3vw;
    }
    .contact__data{
        font-size: 2.3vw;
        display: flex;
        white-space: normal;
        flex-direction: column;
        gap: 0.4vw;
        line-height: 1.2;
    }

    .contacts__map{
        grid-column: 1 / 1;
        grid-row: auto;
    }

    .contacts__map iframe
    {
        height: 50vw;
    }

}


