.article__img-container.mobile
{
    margin-bottom:0px !important;
    background-color: initial;
    box-shadow: none;
}
/* Основной блок */
.capture-block-bz {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 900px;
    border: 1px solid #eaeaea;
    min-height: 120px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Левая часть с изображением */
.doctor-image-bz {
    flex: 0 0 140px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.doctor-image-bz::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 80%;
    background: linear-gradient(90deg, #e6f2ff 0%, transparent 100%);
}

.doctor-img-bz {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Правая часть с контентом */
.content-bz {
    flex: 1;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Основное сообщение */
.main-message-bz {
    margin-bottom: 10px;
}

.title-bz {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a5f;
    line-height: 1.3;
    margin-bottom: 6px;
}

.subtitle-bz {
    font-size: 18px;
    color: #555;
    line-height: 1.3;
}

/* Особенности */
.features-bz {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.feature-bz {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
    line-height: 1.2;
}

.feature-bz i {
    color: #1e87fa;
    margin-right: 6px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Контактная информация и кнопка */
.contact-row-bz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    flex-wrap: wrap;
}

.contact-info-bz {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.phone-block-bz {
    background-color: #1e87fa;
    color: white;
    padding: 28px 28px;
    border-radius: 1.5rem;
    font-weight: 700;
    font-size: 2.2rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(30, 135, 250, 0.25);
    text-align: center;
}

.button-bz {
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #1e87fa;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.button-text-bz {
    display: inline;
}

.button-short-bz {
    display: none;
}

.button-bz:hover {
    background-color: #1a75d9;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(30, 135, 250, 0.3);
}

/* Адаптивность */
@media (max-width: 992px) {
    .contact-info-bz {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .capture-block-bz {
        flex-direction: column;
        max-width: 400px;
        min-height: auto;
    }
    
    .doctor-image-bz {
        flex: 0 0 100px;
        padding: 8px;
    }
    
    .doctor-image-bz::after {
        display: none;
    }
    
    .doctor-img-bz {
        max-height: 80px;
    }
    
    .content-bz {
        padding: 12px 15px;
    }
    
    .title-bz {
        font-size: 20px;
        text-align: center;
    }
    
    .subtitle-bz {
        font-size: 16px;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .features-bz {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 20px;
        margin-left: 70px;
    }
    
    .contact-row-bz {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .contact-info-bz {
        justify-content: center;
        flex-wrap: wrap;
        min-width: auto;
    }
    
    .button-bz {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }
    
    .button-text-bz {
        display: none;
    }
    
    .button-short-bz {
        display: inline;
    }
    
    /* Перенос слова "консультация" на мобильных */
    .button-short-bz {
        word-break: break-all;
        white-space: normal;
        display: inline-block;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .capture-block-bz {
        max-width: 100%;
    }
    
    .title-bz {
        font-size: 20px;
    }
    
    .phone-block-bz {
        font-size: 19px;
        padding: 15px 24px;
        border-radius: 14px;
    }
    
    .phone-note-bz {
        font-size: 0.9rem;
    }
}

.contact-info-bz a {
    text-decoration: none;
}