body {
  background-color: var(--color-bg);
}

.cookie-hero {
  margin-bottom: var(--space-8);
  max-width: 56rem;
}

.cookie-hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.cookie-hero__title {
  font-size: clamp(2.1rem, 3vw, var(--font-size-3xl));
  margin-bottom: var(--space-3);
}

.cookie-hero__lead {
  color: var(--color-text);
  max-width: 48rem;
}

.cookie-section {
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
}

.cookie-section:first-of-type {
  border-top: none;
}

.cookie-section h2 {
  margin-bottom: var(--space-3);
}

.cookie-section p {
  max-width: 62ch;
}

.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.cookie-type-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
}

.cookie-type-card p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .cookie-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cookie-types-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-hero {
    margin-bottom: var(--space-6);
  }
}
