/* Doctors block for articles (Мы лечим / Наши методы) */
.disease-section.disease-doctors {
    margin: 28px 0 16px;
    clear: both;
}
.disease-section.disease-doctors > h2 {
    font-size: 22px;
    color: #1a5490;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f0fa;
}
.disease-doctors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.disease-doctor {
    background: #fff;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}
.disease-doctor:hover {
    border-color: #1a5490;
    box-shadow: 0 4px 12px rgba(26, 84, 144, .12);
}
.disease-doctor__photo {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.disease-doctor__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.disease-doctor__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.disease-doctor__name {
    font-size: 16px;
    font-weight: 600;
    color: #1a5490;
    text-decoration: none;
    margin-bottom: 6px;
}
.disease-doctor__name:hover { text-decoration: underline; }
.disease-doctor__specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}
.disease-doctor__specialty {
    background: #eaf3fe;
    color: #1a5490;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 12px;
}
.disease-doctor__rank {
    color: #6b7d8f;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 12px;
    flex: 1;
}
.disease-doctor__cta {
    display: inline-block;
    background: #1a5490;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s;
    margin-top: auto;
}
.disease-doctor__cta:hover {
    background: #134172;
    text-decoration: none;
    color: #fff !important;
}
.disease-doctors__all {
    margin-top: 16px;
    text-align: right;
}
.disease-doctors__all-link {
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
}
.disease-doctors__all-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .disease-doctors__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .disease-doctor { padding: 12px 10px; }
    .disease-doctor__photo { width: 84px; height: 84px; }
    .disease-doctor__name { font-size: 14px; }
}
