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

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100% - 32px));
  padding: 16px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #10243d, #0b4774);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 54px rgba(5, 23, 48, 0.32);
  transform: translateX(-50%);
}

.cookie-consent p {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.cookie-consent button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  color: #10243d;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.cookie-consent button:hover,
.cookie-consent button:focus-visible {
  background: #ffd36b;
  border-color: #ffd36b;
}

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