.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: #133227;
  box-shadow: 0 -18px 60px rgba(15, 23, 42, 0.22);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  align-items: center;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 18px 0;
}

.cookie-consent__copy {
  display: grid;
  gap: 5px;
}

.cookie-consent__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.cookie-consent__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.cookie-consent__text a {
  color: #fff1d7;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 9999px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  border-color: #ffffff;
  outline: 0;
}

.cookie-consent__button--primary {
  border-color: #cd264a;
  background: #cd264a;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
  border-color: #a9193a;
  background: #a9193a;
}

@media (max-width: 760px) {
  .cookie-consent__inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 150px;
  }
}
