.consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.consent-copy a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  white-space: nowrap;
}

.consent-actions .btn {
  font-size: 13px;
  padding: 6px 14px;
}

@media (max-width: 520px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .consent-actions {
    justify-content: flex-end;
  }
}
