/* Doctor Card Styles from GUK Eye Hospital Design */
.doctor-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.doctor-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 25px 20px;
}

.doctor-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #212529;
}

.doctor-info .specialty {
    color: #0056b3;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.doctor-info .qualification {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 5px;
}

.doctor-info .experience {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-outline-primary:hover {
    background-color: #0d6efd !important;
    color: white !important;
}

/* Row/Col helper for Elementor Editor */
.doctor-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}
.doctor-grid > div {
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 24px;
}
.col-md-12 { width: 100%; }
@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-3 { width: 25%; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .col-sm-6 { width: 50%; }
}