/* nokey — cookie bar */

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie__text {
  margin: 0;
  flex: 1 1 240px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cookie__text a {
  color: var(--amber);
  text-decoration: underline;
}
