/* Consent banner - self-hosted cookie consent (legal: GDPR/TTDSG) */
#ramp7-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: var(--text-color, #094852);
  color: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  font-family: "Futura Cyrillic", "Futura", Arial, sans-serif;
}

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

.ramp7-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.ramp7-consent-content {
  flex: 1 1 420px;
  min-width: 0;
}

.ramp7-consent-heading {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ramp7-consent-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #d8e6ea;
}

.ramp7-consent-text a {
  color: #41bd88;
  text-decoration: underline;
}

.ramp7-consent-text a:hover,
.ramp7-consent-text a:focus {
  color: #24e48d;
}

.ramp7-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ramp7-consent-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 1px solid var(--accent-color-two, #41bd88);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ramp7-consent-btn:focus-visible {
  outline: 2px solid var(--accent-color-two-two, #24e48d);
  outline-offset: 2px;
}

.ramp7-consent-accept {
  background: var(--accent-color-two, #41bd88);
  color: #ffffff;
}

.ramp7-consent-accept:hover,
.ramp7-consent-accept:focus {
  background: var(--accent-color-two-two, #24e48d);
  border-color: var(--accent-color-two-two, #24e48d);
}

.ramp7-consent-reject {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.ramp7-consent-reject:hover,
.ramp7-consent-reject:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

@media (max-width: 480px) {
  .ramp7-consent-actions {
    width: 100%;
  }
  .ramp7-consent-btn {
    flex: 1 1 100%;
  }
}