/* БЛОК: footer — стили только этого блока, включая свои брейкпоинты */

.footer { background: #0b1220; color: rgba(255,255,255,0.7); padding: 40px 0 20px; }
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand span { font-weight: 800; font-size: 18px; color: #fff; }
.footer__brand p { font-size: 13px; margin-top: 6px; }
.footer__social { display: flex; gap: 14px; font-size: 20px; }
.footer__legal { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer__copyright { padding-top: 20px; font-size: 12px; text-align: center; }

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer__legal { flex-direction: row; gap: 20px; }
}
