/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 01 2026 | 14:53:07 */
.teacher-block {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 950px!important;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ФОН */
.tb-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 75%;
    height: 100%;
    
    /* мягкий вариант */
    background: linear-gradient(
        90deg,
        rgba(15,58,51,0.12) 0%,
        rgba(15,58,51,0.06) 40%,
        rgba(15,58,51,0) 100%
    );

    border-radius: 25px 0 0 25px;
    z-index: 0;
}

/* ТЕКСТ */
.tb-content-col {
    position: relative;
    z-index: 2;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Имя */
.tb-name {
    font-size: 40px!important;
    font-weight: 800!important;
    line-height: 1.05;
    margin: 0;
    color: #1C455C;
}

/* Роль */
.tb-role {
    font-size: 20px;
    color: var(--e-global-color-text);
    font-weight: 700;
    margin: 0;
}

/* Описание */
.tb-description p {
    line-height: 1.6;
    color: #374151;
    margin: 0!important;
    font-size: 15px;
}

/* ФОТО */
.tb-image-col {
    position: absolute;
    right: -60px;
    bottom: 0;
    width: 480px;
    z-index: 1;
}

.tb-image-col img {
    width: 100%;
    height: auto;
    display: block;
}

/* МОБИЛКА */
@media (max-width: 900px) {
    .teacher-block {
        flex-direction: column;
        padding: 40px 20px;
        /* Убираем ограничение, чтобы блок тянулся по высоте содержимого */
        height: auto; 
    }

    .tb-bg {
        display: block!important; /* Включаем фон */
        width: 100%!important;
        height: 100%!important;
        border-radius: 25px!important; /* Скругление со всех сторон */
        background: rgba(15, 58, 51, 0.06)!important; /* Упрощенный фон для мобильных */
    }

    .tb-image-col {
        position: relative;
        order: -1;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 320px; /* Ограничиваем размер фото */
        margin-bottom: 30px;
    }

    .tb-content-col {
        max-width: 100%;
        text-align: center;
        align-items: center;
        padding: 0 10px; /* Отступы от краев */
    }

    .tb-name {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .tb-description p {
        font-size: 16px; /* Чуть крупнее для читаемости */
        line-height: 1.5;
    }
}