/* CAC · consent.css — баннер согласия на аналитические cookie */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #1B2E5A;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  font-size: 15px;
  line-height: 1.45;
}

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

.consent-banner .consent-text {
  margin: 0;
  max-width: 640px;
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  font: inherit;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.consent-btn--accept {
  background: #fff;
  color: #1B2E5A;
  border-color: #fff;
}

.consent-btn:hover {
  border-color: #fff;
}

@media (max-width: 560px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .consent-actions {
    justify-content: center;
  }
}
