

/* Start:/local/components/custom/doctors.detail/templates/.default/style.css?17723950805326*/
.doctor-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.doctor-detail__header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.doctor-detail__photo {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.doctor-detail__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-detail__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-detail__name {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.doctor-detail__specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doctor-detail__specialization {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.doctor-detail__experience {
    font-size: 18px;
    color: #666;
}

.doctor-detail__experience strong {
    color: #333;
}

.doctor-detail__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.doctor-detail__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.doctor-detail__contact i {
    width: 20px;
    color: #0066cc;
}

.doctor-detail__contact a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.doctor-detail__contact a:hover {
    color: #004499;
    text-decoration: underline;
}

.doctor-detail__description,
.doctor-detail__education,
.doctor-detail__achievements {
    margin-bottom: 40px;
}

.doctor-detail__description h2,
.doctor-detail__education h2,
.doctor-detail__achievements h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.doctor-detail__text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.doctor-detail__courses {
    margin-bottom: 40px;
}

.doctor-detail__courses h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.course-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.course-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-card__image img {
    transform: scale(1.05);
}

.course-card__content {
    padding: 20px;
}

.course-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.course-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.course-card__duration {
    font-size: 14px;
    color: #666;
}

.course-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
}

.doctor-detail__back {
    margin-top: 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

/* Адаптивность */
@media (max-width: 768px) {
    .doctor-detail__header {
        flex-direction: column;
        gap: 20px;
    }

    .doctor-detail__photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .doctor-detail__name {
        font-size: 28px;
        text-align: center;
    }

    .doctor-detail__specializations {
        justify-content: center;
    }

    .doctor-detail__experience,
    .doctor-detail__contacts {
        text-align: center;
    }

    .doctor-detail__contact {
        justify-content: center;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .doctor-detail {
        padding: 20px 15px;
    }

    .doctor-detail__name {
        font-size: 24px;
    }

    .doctor-detail__description h2,
    .doctor-detail__education h2,
    .doctor-detail__achievements h2,
    .doctor-detail__courses h2 {
        font-size: 22px;
    }
}

/* End */
/* /local/components/custom/doctors.detail/templates/.default/style.css?17723950805326 */
