.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

.footer-grid a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-grid h4 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 12px 24px;
}

.disclosure-inline {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.1);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.cookie-actions button {
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-actions button:hover {
  background: #f8fafc;
}

#cookie-accept {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

#cookie-accept:hover {
  background: #0284c7;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

