/* NeoCronos — cookie consent banner (bottom-strip-full-width) */

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--graphite-soft);
  border-top: 1px solid var(--highlight);
  box-shadow: 0 -8px 40px rgba(255, 46, 196, 0.12);
}
.consent-banner[hidden] {
  display: none;
}
.consent-banner-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 16px var(--gut);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consent-banner-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--chalk-dim);
  line-height: 1.5;
}
.consent-banner-text a {
  color: var(--highlight-2);
}
.consent-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.consent-banner-actions .btn {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.92rem;
  flex: 1 1 auto;
}

@media (min-width: 760px) {
  .consent-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .consent-banner-text {
    max-width: 70ch;
  }
  .consent-banner-actions {
    flex: none;
  }
  .consent-banner-actions .btn {
    flex: none;
  }
}
