.consent {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: auto;
  padding: 20px 22px;
  gap: 24px;
  background: #f5f1e8;
  color: #171714;
  border: 1px solid #171714;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.consent[hidden] {
  display: none;
}

.consent p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.consent p a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.footer-link {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .consent { align-items: flex-start; flex-direction: column; }
  .consent-actions { width: 100%; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .consent { right: 12px; bottom: 12px; left: 12px; }
  .consent-actions .button { flex: 1; }
}
