.gem-doctors-section {
    box-sizing: border-box;
    padding: 70px 20px 80px;
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
}

.gem-doctors-section *,
.gem-doctors-section *::before,
.gem-doctors-section *::after {
    box-sizing: border-box;
}

.gem-doctors-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gem-doctors-title {
    margin: 0 0 42px;
    color: #000;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
    text-align: center;
}

.gem-doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.gem-doctor-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f7f7f7;
}

.gem-doctor-photo {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #eee;
}

.gem-doctor-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gem-doctor-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 26px 30px;
}

.gem-doctor-name {
    margin: 0 0 18px;
    color: #000;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.gem-doctor-about {
    margin-bottom: 26px;
    color: #333;
    font-size: 15px;
    line-height: 1.55;
}

.gem-doctor-about p {
    margin: 0 0 12px;
}

.gem-doctor-about ul {
    margin: 0;
    padding-left: 19px;
}

.gem-doctor-about li {
    margin: 0 0 7px;
}

.gem-doctor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: auto;
    padding: 12px 22px;
    border: 2px solid #941839;
    border-radius: 100px;
    color: #941839 !important;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: background-color .2s ease, color .2s ease;
}

.gem-doctor-button:hover {
    background: #941839;
    color: #fff !important;
}

@media (max-width: 959px) {
    .gem-doctors-section {
        padding: 58px 20px 65px;
    }

    .gem-doctors-title {
        margin-bottom: 34px;
        font-size: 34px;
    }

    .gem-doctors-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .gem-doctor-card {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .gem-doctor-photo {
        height: 100%;
        min-height: 330px;
        aspect-ratio: auto;
    }
}

@media (max-width: 639px) {
    .gem-doctors-section {
        padding: 48px 16px 55px;
    }

    .gem-doctors-title {
        margin-bottom: 28px;
        font-size: 30px;
    }

    .gem-doctor-card {
        display: flex;
    }

    .gem-doctor-photo {
        min-height: 0;
        aspect-ratio: 1 / 1.05;
    }

    .gem-doctor-content {
        padding: 24px 20px 26px;
    }

    .gem-doctor-name {
        font-size: 20px;
    }

    .gem-doctor-about {
        font-size: 14px;
    }
}