.doctor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-secondary);
    transition: transform 0.3s ease;
}

.doctor-photo:hover {
    transform: scale(1.05);
}

.doctor-card {
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(23,159,169,.18);
    border-radius: 14px;
    background: #fff;
    padding: 24px;
    -webkit-box-shadow: 0 1px 0 rgba(16,105,112,.04);
    box-shadow: 0 1px 0 rgba(16,105,112,.04);
}

.doctor-card:hover {
    -webkit-box-shadow: var(--shadow-md);
     box-shadow: var(--shadow-md);
}

.doctor-name {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-primary);
}

.doctor-position {
    font-size: 1em;
    color: var(--color-secondary);
    margin-top: 5px;
}

.doctor-description {
    margin-top: 10px;
    font-size: 0.9em;
    line-height: 1.5;
    color: var(--color-text);
}