.footer-choice {
  display: block;
  margin: .55rem 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dce8e3;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-choice:hover,
.footer-choice:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.consent-panel {
  position: fixed;
  z-index: 50;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel h2 {
  margin: 0 0 .4rem;
  font-size: 1.55rem;
}

.consent-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: .7rem;
}

@media (max-width: 820px) {
  .consent-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 500px) {
  .consent-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .consent-actions {
    flex-direction: column-reverse;
  }

  .consent-actions .button {
    width: 100%;
  }
}

@media print {
  .consent-panel {
    display: none !important;
  }
}
