.p72-home-doctors {
    padding: 96px 0 112px;
    background: #fff;
}

.p72-home-doctors__title {
    margin: 0;
    font: inherit;
    color: inherit;
}

.p72-home-doctors__heading {
    margin-bottom: 16px;
}

.p72-home-doctors__summary {
    max-width: 980px;
    margin: 0 0 40px;
    color: #555;
    font-size: 18px;
    line-height: 1.55;
}

.p72-home-doctors__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.p72-home-doctors__card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e8dcc6;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.p72-home-doctors__card:hover {
    border-color: #a37037;
    box-shadow: 0 12px 28px rgba(44, 37, 30, .08);
    color: #333;
}

.p72-home-doctors__card:focus-visible,
.p72-home-doctors__all:focus-visible {
    outline: 3px solid #a37037;
    outline-offset: 3px;
}

.p72-home-doctors__card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 9;
    object-fit: cover;
}

.p72-home-doctors__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px;
}

.p72-home-doctors__name,
.p72-home-doctors__spec,
.p72-home-doctors__exp {
    display: block;
}

.p72-home-doctors__name {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.p72-home-doctors__spec {
    color: #777;
    font-size: 15px;
    line-height: 1.4;
}

.p72-home-doctors__exp {
    margin-top: auto;
    padding-top: 16px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.p72-home-doctors__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee7dc;
    color: #7a542f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.p72-home-doctors__more span {
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
}

.p72-home-doctors__all {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 36px;
    border-bottom: 1px solid currentColor;
    color: #7a542f;
    font-size: 17px;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .p72-home-doctors {
        padding: 80px 0 96px;
    }

    .p72-home-doctors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .p72-home-doctors {
        padding: 36px 0 64px;
    }

    .p72-home-doctors__heading {
        margin-bottom: 12px;
    }

    .p72-home-doctors__summary {
        margin: 0 0 24px;
        font-size: 16px;
        line-height: 1.45;
    }

    .p72-home-doctors__grid {
        gap: 12px;
    }

    .p72-home-doctors__body {
        padding: 16px 14px;
    }

    .p72-home-doctors__name {
        font-size: 16px;
        line-height: 1.28;
    }

    .p72-home-doctors__spec {
        font-size: 13px;
        line-height: 1.38;
    }

    .p72-home-doctors__exp {
        padding-top: 14px;
        font-size: 13px;
    }

    .p72-home-doctors__more {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 12px;
    }
}

@media (min-width: 360px) and (max-width: 767px) {
    .p72-home-doctors__card img {
        aspect-ratio: 2 / 3;
    }

    .p72-home-doctors__card:nth-child(2n) img {
        object-position: right center;
    }
}

@media (max-width: 359px) {
    .p72-home-doctors__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
