.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);

  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.cookie-consent__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

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

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  cursor: pointer;
}

.cookie-consent__btn--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.cookie-consent__btn--primary:hover {
  background: #222;
}

.cookie-consent__btn:hover {
  opacity: .9;
}

.cookie-consent__link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-consent__actions {
    justify-content: stretch;
  }
  .cookie-consent__btn {
    flex: 1;
  }
}