/* ===================
   Footer
   =================== */
.site-footer{
    width:100%;
    background:#000;
    padding:60px 20px;
    color:#fff;
    font-family: Arial, sans-serif;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-left{
    flex:1;
}

/* Копірайт в одну лінію з підтримкою WYSIWYG тегів */
.footer-copy{
    display: inline-block;       /* робимо елемент inline для одного рядка */
    white-space: nowrap;          /* текст в один рядок */
    overflow: hidden;             /* обрізаємо зайве */
    text-overflow: ellipsis;      /* додає ... якщо не влазить */
    line-height:1.4;
}

/* Підтримка WYSIWYG тегів всередині одного рядка */
.footer-copy strong { font-weight:bold; }
.footer-copy em { font-style:italic; }
.footer-copy a { 
    color:#fff; 
    text-decoration:underline; 
}

/* Соцмережі */
.footer-right{
    flex:1;
    display:flex;
    gap:15px;
    justify-content:flex-end;
    align-items:center;
}

.social-icon img{
    width:30px;
    height:30px;
    object-fit:contain;
    transition:0.3s;
}

.social-icon img:hover{
    transform:scale(1.1);
}