.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(560px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(12, 31, 55, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #1c2a39;
  box-shadow: 0 18px 48px rgba(10, 25, 41, 0.22);
}

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

.cookie-consent__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #1c2a39;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__content {
  padding-right: 36px;
}

.cookie-consent__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.cookie-consent__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #163b78;
  border-radius: 6px;
  background: #163b78;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button--muted {
  background: #ffffff;
  color: #163b78;
}

@media (max-width: 575px) {
  .cookie-consent {
    right: 16px;
    bottom: 16px;
  }

  .cookie-consent__actions {
    display: grid;
  }
}
