.medical-specialists {
    padding: 80px 0;
    background: #ffffff;
}

.medical-specialists__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.medical-specialists__title-group {
    margin-bottom: 40px;
}

.medical-specialists__title-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    margin-bottom: 0;
    width: 100%;
}

.medical-specialists__title-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color));
}

.medical-specialists__title-wrapper .medical-specialists__title-line:last-child {
    background: linear-gradient(270deg, transparent, var(--border-color));
}

.medical-specialists__title {
    margin: 0;
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.5px;
    justify-self: center;
}

.medical-specialists__title::after {
    display: none !important;
}

.medical-specialists__title-accent {
    width: 60px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: var(--accent-red);
}

.medical-specialists__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.medical-specialists__card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.medical-specialists__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(29, 80, 60, 0.1);
    border-color: var(--primary-light);
}

.medical-specialists__photo {
    width: 100%;
    height: 320px;
    background: #f8fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.medical-specialists__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.medical-specialists__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
}

.medical-specialists__photo-placeholder i {
    font-size: 80px;
    opacity: 0.12;
    color: var(--primary);
}

.medical-specialists__info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.medical-specialists__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 48px;
}

.medical-specialists__role {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.medical-specialists__exp {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.medical-specialists__footer {
    margin-top: 50px;
    text-align: center;
}

.medical-specialists__button {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
    background: #ffffff;
}

.medical-specialists__button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(29, 80, 60, 0.03);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .medical-specialists {
        padding: 56px 0 64px;
    }

    .medical-specialists__inner {
        padding: 0 16px;
    }

    .medical-specialists__title-wrapper {
        grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
        column-gap: 14px;
    }

    .medical-specialists__title {
        font-size: 26px;
        white-space: normal;
        max-width: 220px;
        text-wrap: balance;
    }

    .medical-specialists__title-accent {
        width: 68px;
        margin-top: 12px;
    }

    .medical-specialists__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .medical-specialists__card {
        flex-direction: row;
        align-items: stretch;
        padding: 16px;
        gap: 16px;
        border-radius: 18px;
        height: auto;
    }

    .medical-specialists__photo {
        width: 110px;
        height: 140px;
        flex: 0 0 110px;
        border-radius: 14px;
    }

    .medical-specialists__photo img {
        object-fit: cover;
    }

    .medical-specialists__info {
        padding: 0;
        flex-grow: 1;
        justify-content: center;
    }

    .medical-specialists__name {
        font-size: 16px;
        margin-bottom: 8px;
        min-height: 0;
    }

    .medical-specialists__role {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .medical-specialists__exp {
        font-size: 12px;
        padding-top: 12px;
    }

    .medical-specialists__footer {
        margin-top: 40px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .medical-specialists__button {
        width: 100%;
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .medical-specialists__grid {
        gap: 12px;
    }

    .medical-specialists__card {
        padding: 14px;
        gap: 12px;
        height: auto;
    }

    .medical-specialists__photo {
        width: 96px;
        height: 120px;
        flex-basis: 96px;
    }

    .medical-specialists__name {
        font-size: 15px;
    }

    .medical-specialists__role {
        font-size: 12px;
    }

    .medical-specialists__exp {
        font-size: 11px;
    }
}
