/* Основной контейнер блока */
#rec1002893206 .t-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Колонка */
#rec1002893206 .t-col {
    width: 93% !important;
    max-width: 93% !important;
    box-sizing: border-box;
}

/* Обёртка аккордеона с пропорциями (4:3) */
#rec1002893206 .t-accordion__wrapper {
    width: 100% !important;
    max-width: 93% !important;
    position: relative;
    padding-top: 75%; /* Соотношение 4:3 */
    box-sizing: border-box;
}

/* Внутренний контент аккордеона — растягивается в заданную пропорцию */
#rec1002893206 .t-accordion__wrapper > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Адаптация на мобильных устройствах */
@media screen and (max-width: 768px) {
    #rec1002893206 .t-accordion__wrapper {
        padding-top: 0;
        position: static;
    }

    #rec1002893206 .t-accordion__wrapper > * {
        position: static;
        padding: 10px;
    }

    #rec1002893206 .t-col {
        width: 100% !important;
        max-width: 100% !important;
    }
}
