.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: none;
}

.consent-banner.is-visible {
  display: block;
}

.consent-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(23, 32, 29, .18);
}

.consent-copy strong {
  display: block;
  margin-bottom: 4px;
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 0 auto;
}

.consent-settings {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #43544d;
  font: inherit;
  cursor: pointer;
}

.consent-settings:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .consent-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions .btn {
    flex: 1 1 130px;
  }
}
