/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--white-colour);
  box-shadow: 0 -0.5vmin 2vmin rgba(0, 0, 0, 0.15);
  padding: 2vmin 3vmin;
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2vmin;
  align-items: center;
  justify-content: center;
}
.cookie-title {
  color: var(--dark-colour);
  font-weight: 700;
  font-size: 2vmin;
  margin-bottom: 0.5vmin;
}
.cookie-copy {
  color: var(--grey-colour);
  font-size: 1.5vmin;
  line-height: 2.4vmin;
  text-wrap: balance;
}
.cookie-actions {
  display: flex;
  gap: 1vmin;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .cookie-inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}
