/* ===== Component: Footer (монолітний вигляд; без контейнерів/позиціонування) ===== */
/* Контейнер 1400px і відступи сторінки — у page_*.css */

.footer-component .site-footer {
  background-color: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(8px);
  border-top: 1px solid #3a4149;
  padding: 25px 0;
  color: #a0b0c0;
  font-size: 13px;
  margin-top: 40px;
}

.footer-component .site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-component .footer-copyright {
  text-align: left;
}

.footer-component .footer-socials a {
  color: #a0b0c0;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-component .footer-socials a:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-component .footer-disclaimer {
  flex: 1;
  text-align: center;
}

/* Адаптив — за потреби можна деталізувати пізніше */
@media (max-width: 860px) {
  .footer-component .site-footer .container {
    justify-content: center;
    text-align: center;
  }
}
