.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1100;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.25rem;
  color: #343f52;
  background: #fff;
  border: 1px solid rgba(52, 63, 82, 0.16);
  border-radius: 0.8rem;
  box-shadow: 0 0.75rem 2.25rem rgba(30, 34, 40, 0.18);
}

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

.cookie-consent__content {
  max-width: 46rem;
}

.cookie-consent__content h2,
.cookie-consent__content p {
  margin: 0;
}

.cookie-consent__content h2 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.cookie-consent__policy {
  margin-top: 0.4rem !important;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-links {
  font-size: 0.7rem;
}

.cookie-links a,
.cookie-links button {
  color: inherit;
  text-decoration: underline;
}

.cookie-links button {
  padding: 0;
  margin-left: 0.7rem;
  background: transparent;
  border: 0;
}

@media (max-width: 767px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
}
