.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 20px;
  color: #fff;
  background: #061f32;
  box-shadow: 0 -12px 35px rgba(6, 31, 50, .28);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin: auto;
  gap: 28px;
}

.cookie-banner h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.2rem;
}

.cookie-banner p {
  max-width: 750px;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: #a8d5ff;
  font-weight: 750;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-button {
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #073b64;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  filter: brightness(.92);
}

.cookie-button--secondary {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1px #fff;
}

@media (max-width: 720px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}
