.doctor-section {

    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;

}


.section-title {

    text-align: center;
    margin-bottom: 35px;
    font-size: 38px;
    font-weight: 700;

}



.doctor-card {

    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 30px;

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .06);

    margin-bottom: 35px;

}




.doctor-image img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}




.doctor-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}




.doctor-schedule {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #EEF7FD;
    border-radius: 10px;
    padding: 20px;
}



.day {
    text-align: center;
}



.day span {
    display: block;
    font-weight: 700;
    color: #28315D;
    margin-bottom: 12px;
    font-size: 18px;
}



.day p {

    margin: 4px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.doctor-action {
    margin-top: 22px;
    display: flex;
    gap: 18px;
}



.btn {
    width: 180px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 1px solid #ddd;
    color: #666;
}

.btn-primary {
    background: #2D286F;
    color: white;
}

@media(max-width:1441px) {
    .day span {
        display: block;
        font-weight: 700;
        color: #28315D;
        margin-bottom: 12px;
        font-size: 16px;
    }

    .day p {
        margin: 4px 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
    }
}


@media(max-width:768px) {

    .doctor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .doctor-image {
        display: flex;
        justify-content: center;
    }

    .doctor-schedule {
        grid-template-columns: 1fr;
    }
    
    .doctor-action {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

}