.analytics-consent {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(680px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.analytics-consent-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.analytics-consent-close:hover {
  color: var(--ink);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 4px;
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

@media (max-width: 700px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 24px);
    padding-top: 30px;
  }

  .analytics-consent-actions {
    justify-content: flex-end;
  }
}
