/* Footer and cookie banner styles for Distriict24 */
.site-footer {
  margin-top: auto;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.35);
  background: rgba(15, 23, 42, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-badge-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(228, 223, 240, 0.82);
}

.footer-column ul {
  display: grid;
  gap: 0.35rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  margin: 0 auto var(--space-16);
  max-width: 960px;
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.25rem;
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  box-shadow: 0 -12px 35px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-banner-text {
  font-size: 0.85rem;
}

.cookie-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #e5e7eb;
}

.cookie-description {
  margin: 0 0 0.35rem;
  color: #cbd5f5;
}

.cookie-link {
  font-size: 0.8rem;
  color: #e5e7eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-btn {
  font-size: 0.75rem;
  padding: 0.55rem 1.1rem;
}

.cookie-btn--secondary {
  background-color: rgba(15, 23, 42, 0.2);
  color: #e5e7eb;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

@media (min-width: 640px) {
  .cookie-banner-inner {
    padding: 1rem 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-banner-text {
    max-width: 70%;
  }
}
