.pku-doctor-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.pku-doctor-card{
    display:block;
    text-decoration:none;
    color:#222;
    background:#ffffff;
    border-radius:10px;
     border: 1px solid #e5e5e5;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.pku-doctor-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.pku-doctor-image img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
}

.pku-doctor-content{
    padding:20px;
}

.pku-doctor-content h3{
    margin:0 0 6px 0px;
    font-size:20px;
    font-weight: 650;
    line-height:1.3;
}

.pku-doctor-content p{
    margin-top: 10px;
    color:#666;
    font-size:15px;
}

.pku-doctor-schedule-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #183c73;
}

.pku-doctor-schedule-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

@media(max-width:1024px){

    .pku-doctor-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .pku-doctor-grid{
        grid-template-columns:1fr;
    }

}

/* ===========================
   Search Dokter
=========================== */

.pku-doctor-search{

    display:grid;
    grid-template-columns:2fr 1.5fr 180px;
    gap:20px;
    margin-bottom:40px;

    max-width:700px;
    margin:0 auto 40px;
}

.pku-doctor-search input{

    width:100%;
    height:48px;
    padding:0 18px;

    border:1px solid #ccc;
    border-radius:4px;

    font-size:16px;
    background:#fff;
    box-sizing:border-box;
    outline:none;

}

.pku-doctor-search select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    width:100%;
    height:48px;

    padding:0 45px 0 18px;

    border:1px solid #ccc;
    border-radius:4px;

    font-size:16px;
    background-color:#fff;

    background-image:url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');

    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:18px;

    box-sizing:border-box;
    outline:none;

}



    /* width:100%;
    height:48px;
    padding:0 18px;

    border:1px solid #dcdcdc;
    border-radius:6px;

    font-size:16px;
    outline:none;
    background:#fff;

    box-sizing:border-box; */



.pku-doctor-search input:focus,
.pku-doctor-search select:focus{

    border-color:#183c73;

}

.pku-doctor-search button{

    width:60%;
    height:48px;

    border:none;
    border-radius:4px;

    background:#183c73;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;

}

.pku-doctor-search button:hover{

    background:#0f2d5c;

}

@media (max-width:767px){

    .pku-doctor-search{

        grid-template-columns:1fr;
        gap:15px;

        max-width:100%;
        margin:0 auto 30px;
        padding:0 20px;

        box-sizing:border-box;

    }

    .pku-doctor-search input,
    .pku-doctor-search select,
    .pku-doctor-search button{

        width:100%;
        height:52px;
        font-size:15px;

    }

}

/* ===========================
   Dokter Tidak Ditemukan
=========================== */

.pku-doctor-not-found{

    padding:40px;
    margin-top:20px;

    border:1px solid #e5e5e5;
    border-radius:12px;

    background:#f8f9fb;

    text-align:center;

}

.pku-doctor-not-found h3{

    margin:0 0 15px;
    color:#183c73;
    font-size:28px;

}

.pku-doctor-not-found p{

    margin:10px 0;
    color:#555;
    line-height:1.8;

}