.doctors-grid-section {
    background: #FFFFFF;
    padding: 30px 0;
    /* Override section-padding */
}

.doctors-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 20px auto 0;
    /* Add top margin for overlapping circle */
}

.doctor-minimal-card {
    background: #FFFAF5;
    /* Light peach/beige background */
    border-radius: 12px;
    padding: 0 20px 40px 20px;
    text-align: center;
    position: relative;
    margin-top: 60px;
    /* Space for the image to stick out */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.doctor-minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.doc-img-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: -70px auto 20px;
    /* Pull image up by half its height */
    border: 5px solid #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    z-index: 2;
}

.doc-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.doctor-minimal-card h3 {
    font-size: 1.5rem;
    color: #1A2E44;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    font-weight: 600;
}

.doctor-minimal-card .doc-designation {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.doctor-minimal-card .btn-view-profile {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #E0E0E0;
    background: transparent;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.doctor-minimal-card .btn-view-profile:hover {
    background: #1E73BE;
    color: #FFFFFF;
    border-color: #1E73BE;
}