h1.lectors-header {
    color: #181818;
    font-size: 37px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    padding:20px 0;
}

.lectors-description {
    color: #2A2A30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.lectors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}
    .lectors .lector {
        height: 550px;
        flex: 0 0 calc(calc(100% / 3) - calc(40px / 3));
        max-width: calc(calc(100% / 3) - calc(40px / 3));
        padding: 30px 28px 20px 28px;        
        display: flex;
        gap: 20px;
        flex-direction: column;
        border-radius: 40px 40px 40px 3px;
        border: 1px solid #D2D2D2;
        color: #2A2A30;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

        .lectors .lector .lector-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }     

        .lectors .lector .lector-photo {
            align-self: center;
            background-size: auto 100%;
            background-position: center;
            background-repeat: no-repeat;
            width: 316px;
            height: 316px;
            border-radius: 316px;
            transition-duration: 500ms;
        }
        .lectors .lector:hover .lector-photo {
            background-size: auto 105%;
        }

        .lectors .lector .lector-name {
            color: #000;
            font-size: 20px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .lectors .lector .lector-position > div {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.seo-text {
    color: #2A2A30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 80px 10px;
}

    .seo-text h2 {
        color: #00b7b7;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .seo-text h3 {
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .seo-text p,
        .seo-text ul {
        margin-bottom: 1rem;
    }

    .seo-text ul, ol {
        padding-left: 15px;
    }

    .seo-text ul > li {
        list-style: inside;
    }

    .seo-text ol > li {
        list-style-position: inside;
        list-style-type: decimal;
    }

@media (max-width: 1200px) {
    .lectors {
        padding: 28px 30px;
    }
        .lectors .lector {
            flex: 0 0 calc(50% - 10px);
            max-width: calc(50% - 10px);
            height: 481px;
            font-size: 14px;
        }

            .lectors .lector .lector-photo {
                width: 260px;
                height: 260px;
            }

            .lectors .lector .lector-name {
                font-size: 17px;
            }
}

@media (max-width:818px) {
    .lectors {
        gap: 10px;
        padding: 28px 0;
    }
        .lectors .lector {
            padding: 30px 20px 20px 20px;        
            flex: 0 0 calc(50% - 5px);
            max-width: calc(50% - 5px);
        }
            .lectors .lector .lector-photo {
                width: 256px;
                height: 256px;
            }
}
@media (max-width: 622px) {
    .lectors .lector {
        flex: 0 0 100%;
        min-width: 100%;
        flex-direction: row;
        height: 175px;
        gap: 10px;
        font-size: 13px;
        line-height: normal;
        padding: 22px 10px 18px 10px;
        justify-content: start;
    }
        .lectors .lector .lector-info {            
            gap: 10px;
        }
        .lectors .lector .lector-photo {
            flex: 0 0 122px;
            width: 122px;
            height: 122px;
        }

        .lectors .lector .lector-name {
            font-size: 16px;
            white-space: normal;            
            height: auto;
        }

        .lectors .lector .lector-position {
            flex-grow: 1;
        }

        .lectors .lector .rounded-button {
            min-height: 40px;
        }
}
