/* Consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #0b1c3a;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 16px;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  color: #dbe5f7;
}

.cookie-banner__links a {
  color: #9ad1ff;
  text-decoration: underline;
  margin-right: 12px;
  font-size: 13px;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #1e88e5;
  color: #fff;
}

.cookie-btn.reject {
  background: #2d3f66;
  color: #fff;
}

@media (min-width: 920px) {
  .cookie-banner {
    max-width: 860px;
    margin: 0 auto;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner__content {
    flex: 1;
  }
}
