

/* Start:/local/components/custom/doctors/templates/.default/style.css?17824228483760*/
.lecturers-section {
    padding: 60px 0;
    background-color: #fff;
}

.lecturers-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}
.lecturers-title span {
    color: #e66425;
}

/* --- Обертка карточки (для сетки) --- */
.lecturer-item {
    margin-bottom: 30px;
}
.lecturer-item > a {
    text-decoration: none;
}

/* --- Основная карточка --- */
.lecturer-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #dce8f5;
    border-bottom: 11px solid #1f6fbe;
    border-right: 11px solid #1f6fbe;
    border-radius: 64px 64px 100px 64px;
    padding: 30px 30px 30px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;

}



/* Цвета для крюка */
.card-blue::after {
    border-color: #0d47a1; /* Темно-синий, как на скрине */
}
.card-pink::after {
    border-color: #c41e3a; /* Розово-красный */
}

/* Верхняя часть: Фото + Текст */
.card-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

/* Фотография */
.card-photo {
    width: 207px;
    height: 207px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    /* Тень для фото, если нужно */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Текстовый блок справа от фото */
.card-info {

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-name {
    font-weight: 700;
    font-size: 40px;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
}

.card-exp {
    font-size: 21px;
    color: #555;
    font-weight: 400;
}

/* Нижняя часть: Теги */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    padding-top: 10px;
    flex-direction: row;
    align-content: stretch;
}

.tag-item {
    color: #3d6e98;
    font-weight: 300;
    font-size: 21px;
    position: relative;
    padding-left: 30px;
}

.spec-item{
    color: #E67725;
    font-weight: 400;
    font-size: 24px;
    position: relative;
    top: -20px;
    padding-left: 30px;
}

/* Точка перед тегом */
.tag-item::before {
    content: '-';
    color: #333;
    margin-right: 5px;
}

/* Кнопка "Все лекторы" (только моб) */
.show-more-container {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.btn-show-more {
    background: linear-gradient(90deg, #e66425 0%, #c41e3a 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-show-more:hover {
    transform: translateY(-2px);
}
.tariffs-section {
    padding-bottom: 80px; /* Отступ снизу */
    background-color: #fff;
}
/* ---- до 991px (мобилка) ---- */
@media (max-width: 991.98px) {
    .card-top {
        flex-direction: column;
    }
    .card-name {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 5px;
    }
    .card-tags {
        gap: 2px;
        flex-direction: row;
    }
    .lecturers-section {
        padding: 0 20px;
    }
    .spec-item {
        font-size: 20px;
    }
    .card-exp {
        font-size: 16px;
    }
    .tag-item {
        font-size: 16px;
    }
}
/* End */
/* /local/components/custom/doctors/templates/.default/style.css?17824228483760 */
