.bluescope {
  right: 90px;
}

@media (min-width: 768px) {
  .bluescope {
    right: 120px;
  }
}

#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#cookie-consent-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#cookie-consent-banner.is-hidden {
  display: none;
}

.cookie-consent-panel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px 22px 26px;
  border-radius: 14px;
  border: 1px solid rgba(0, 51, 153, 0.12);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 40, 120, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}

.cookie-consent-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #d9544f;
  background: rgba(255, 255, 255, 0.95);
  color: #d9544f !important;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cookie-consent-close:hover {
  background: #fff;
}

.cookie-consent-text {
  flex: 1 1 280px;
  min-width: 0;
  color: #393939;
  font-family: MaisonNeueBook, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent-text p {
  margin: 0 0 6px;
}

.cookie-consent-text p:last-child {
  margin-bottom: 0;
}

.cookie-consent-text strong {
  font-family: MaisonNeueDemi, MaisonNeueBook, sans-serif;
  font-weight: 600;
}

.cookie-consent-text a {
  color: #0066cc;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.cookie-consent-btn {
  border: none;
  border-radius: 8px;
  background: #d9544f !important;
  color: #fff;
  font-family: MaisonNeueDemi, MaisonNeueBook, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cookie-consent-btn:hover {
  background: #003399;
}

.cookie-consent-btn--accept {
  min-width: 130px;
}

@media (max-width: 767px) {
  .cookie-consent-panel {
    padding: 20px 18px 18px;
  }

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-btn {
    width: 100%;
  }
}
