/* =========================================
   DOCTORS SECTION (hospital detail page)
========================================= */

.doctors-section {
    padding: 70px 0 60px;
    background: #ffffff;
}

.doctors-container {
    max-width: 1132px;
    margin-top: 20px;
}

.doctors-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.doctors-heading h2 {
    margin: 0 0 10px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.doctors-heading p {
    margin: 0;
    color: #486c71;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

.doctor-card {
    height: 100%;
    padding: 26px 24px;
    text-align: center;
    border: 1px solid #e2e9e8;
    border-radius: 13px;
    background: #f7faf9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doctor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(20, 58, 65, 0.09);
}

.doctor-photo {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #e9f4f3;
    color: #0a99a5;
    font-size: 30px;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    margin: 0 0 4px;
    color: #003e50;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.doctor-designation {
    margin: 0 0 6px;
    color: #0a99a5;
    font-family: "DM Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.doctor-qualification,
.doctor-experience {
    margin: 0;
    color: #648086;
    font-family: "DM Sans", sans-serif;
    font-size: 12.5px;
    line-height: 1.6;
}

.doctor-hospital-link {
    display: inline-block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e9e8;
    color: #0a99a5;
    font-family: "DM Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

.doctor-hospital-link:hover {
    text-decoration: underline;
}
