
/* ECMT cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #d8e6f8;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(5, 36, 89, 0.18);
}

.cookie-banner__content {
  max-width: 760px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: #071937;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: #50658d;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .btn {
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
