/* ===== БЛОК СПРАВА В ШАПКЕ (ЕДИНЫЙ) ===== */
.header-right {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 100;
}

/* ===== НОМЕР ТЕЛЕФОНА (ПК) ===== */
.header-right .phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

/* ===== КНОПКА ЗВОНКА (ПО УМОЛЧАНИЮ СКРЫТА) ===== */
.header-right .call-btn {
    display: none;
}

/* ===== СОЦСЕТИ ===== */
.header-socials {
    display: flex;
    gap: 10px;
}

.header-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 16px;
}

/* Цвета иконок */
.header-socials .fa-vk {
    color: #4c75a3;
}

.header-socials .fa-youtube {
    color: #ff0000;
}

.header-socials .fa-telegram-plane {
    color: #2fa4e7;
}

.header-socials a:hover {
    background: #ffffff;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {

    .header-right {
        top: 12px;
        right: 12px;
        gap: 10px;
    }

    /* Скрываем номер */
    .header-right .phone-number {
        display: none;
    }

    /* Показываем кнопку звонка */
    .header-right .call-btn {
        display: flex;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #0d6efd;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .header-right .call-btn::before {
        content: "📞";
        font-size: 22px;
        color: #ffffff;
        line-height: 1;
    }

    /* Соцсети крупнее */
    .header-socials a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ===== КАРТИНКИ В ТЕКСТЕ МАТЕРИАЛОВ ===== */
.item-page img,
.com-content-article img {
    margin: 20px 0;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}
