/* SG CONSENT BANNER START */
.sg-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sg-consent[hidden] {
  display: none !important;
}

.sg-consent__card {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.96);
  color: #f5f5f5;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.sg-consent__body {
  padding: 18px 20px;
}

.sg-consent__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.sg-consent__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.sg-consent__copy {
  margin: 0;
  max-width: 72ch;
  color: #d4d4d8;
  line-height: 1.55;
}

.sg-consent__copy--long {
  display: none;
}

.sg-consent__actions,
.sg-consent__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.sg-consent__button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #171717;
  color: #f5f5f5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.sg-consent__button:hover,
.sg-consent__button:focus-visible {
  border-color: rgba(0, 204, 119, 0.65);
  transform: translateY(-1px);
  outline: none;
}

.sg-consent__button--primary {
  background: linear-gradient(180deg, #00cc77, #00a862);
  border-color: rgba(0, 204, 119, 0.9);
  color: #0a0a0a;
}

.sg-consent__button--ghost {
  background: transparent;
}

.sg-consent__panel {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-consent__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: #f5f5f5;
}

.sg-consent__row strong {
  display: block;
  margin-bottom: 4px;
}

.sg-consent__row p {
  margin: 0;
  color: #a1a1aa;
  line-height: 1.45;
}

.sg-consent__row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #00cc77;
  flex: 0 0 auto;
}

.sg-consent__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: #d4d4d8;
}

.sg-consent__pill--locked {
  background: rgba(0, 204, 119, 0.15);
  color: #b3ffd6;
}

.sg-consent__status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 13px;
  color: #a1a1aa;
}

@media (min-width: 940px) {
  .sg-consent__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 24px;
    align-items: start;
  }

  .sg-consent__copy--short {
    display: none;
  }

  .sg-consent__copy--long {
    display: block;
  }

  .sg-consent__actions {
    justify-content: flex-end;
    margin-top: 0;
  }

  .sg-consent__panel,
  .sg-consent__status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .sg-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .sg-consent__body {
    padding: 16px;
  }

  .sg-consent__title {
    font-size: 22px;
  }

  .sg-consent__actions .sg-consent__button,
  .sg-consent__panel-actions .sg-consent__button {
    width: 100%;
    justify-content: center;
  }

  .sg-consent__row {
    align-items: flex-start;
  }
}
/* SG CONSENT BANNER END */
