/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 20 2026 | 07:26:17 */
    .teacher-block {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        max-width: 950px!important;
        margin: 0 auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .teacher-block * {
        box-sizing: border-box;
    }

    /* Левая колонка */
    .tb-image-col {
        flex: 1;
        max-width: 55%;
        display: flex;
        justify-content: center;
    }

    .tb-image-col img {
        width: 80%;
        max-width: 500px;
        height: auto;
        display: block;
        margin-bottom: 5px;
    }

    /* Правая колонка */
.tb-content-col {
    flex: 1.2;
    padding-left: 40px;
    display: flex;
    margin-bottom: 0px!important;
    flex-direction: column;
    gap: 20px;
}

    .tb-name {
        font-size: 35px!important;
        font-weight: 900!important;
        text-transform: uppercase;
        line-height: 1.1;
        margin: 0;
    }

    .tb-role {
        font-size: 23px;
        color: #333;
        font-weight: 400;
        margin: 0;
    }

    .tb-line {
        width: 60px;
        height: 1px;
        background: #000;
    
    }

    .tb-description p {
        line-height: 1.6;
        color: #333;
        margin: 0px!important;
    }

    /* Мобилка */
    @media (max-width: 900px) {
        .teacher-block {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .tb-image-col {
            max-width: 100%;
            margin-bottom: 0px!important;
        }

        .tb-content-col {
            padding-left: 0;
            width: 100%;
            gap: 10px;
        }

        .tb-line {
            margin: 0 auto;
        }

        .tb-name {
            font-size: 28px!important;
        }

        .tb-role {
            font-size: 20px!important;
        }
    }
