/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 20 2026 | 09:55:30 */
    /* --- ССЫЛКА-КОНТЕЙНЕР --- */
    .specialist-link {
        text-decoration: none;
        color: inherit;
        display: block;
        max-width: 350px;
        margin: 0 auto;
    }

    /* --- КАРТОЧКА --- */
    .specialist-card {
        /*background-color: #ffffff;*/
        /*border: 1px solid #e2e8f0;*/
        border-radius: 32px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        cursor: pointer;
        text-align: center;
    }

 

    /* --- ФОТО (КРУГЛОЕ) --- */
.specialist-image-wrapper {
    width: 60%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f1f5f9;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

    .specialist-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    /* --- ТЕКСТ --- */
    .specialist-info {
        padding: 0 8px 8px;
    }

    .specialist-name {
        color: var(--e-global-color-primary);
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 10px;
        line-height: 1.2;
    }

    .specialist-specialty {
        color: var(--e-global-color-accent);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

    .specialist-experience {
        color: #94a3b8;
        font-size: 14px;
        margin: 0;
    }

    /* --- АДАПТИВ --- */
    @media (max-width: 767px) {
        .specialist-name {
            font-size: 25px !important;
        }
    }

