.page-cookie-policy main {
  padding-top: 0;
}

.cookie-hero {
  padding-top: calc(var(--header-height-desktop) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.cookie-hero-card {
  position: relative;
  border-radius: var(--radius-card);
  background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.22), transparent 55%), radial-gradient(circle at bottom right, rgba(245, 196, 81, 0.22), transparent 55%), linear-gradient(145deg, #11141f, #05060a);
  box-shadow: var(--shadow-elevated);
}

.cookie-hero-inner {
  position: relative;
  z-index: 1;
}

.cookie-hero-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.cookie-hero-title {
  font-size: clamp(2.1rem, 1.9rem + 0.8vw, 2.7rem);
  margin-bottom: var(--space-md);
}

.cookie-hero-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-2xl);
}

.cookie-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.cookie-hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cookie-hero-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 245, 255, 0.18);
}

.cookie-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cookie-pref-btn {
  max-width: 100%;
}

.cookie-content {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-content-block {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.cookie-content-block h2,
.cookie-content-block h3 {
  color: var(--color-text);
}

.cookie-content-block h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.cookie-content-block h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.cookie-content-block p {
  margin-bottom: var(--space-lg);
}

.cookie-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: var(--space-2xl);
}

.cookie-table {
  min-width: 640px;
}

.cookie-table th:first-child,
.cookie-table td:first-child {
  width: 18%;
  white-space: nowrap;
}

.cookie-table th:nth-child(4),
.cookie-table td:nth-child(4) {
  width: 18%;
}

.cookie-list {
  margin-bottom: var(--space-lg);
  padding-left: 1.4rem;
}

.cookie-list li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-soft);
}

@media (max-width: 991.98px) {
  .cookie-hero {
    padding-top: calc(var(--header-height-tablet) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }
}

@media (max-width: 767.98px) {
  .cookie-hero {
    padding-top: calc(var(--header-height-mobile) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }
  .cookie-hero-lead {
    font-size: var(--text-md);
  }
  .cookie-preferences {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-pref-btn {
    width: 100%;
  }
  .cookie-table {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .cookie-hero-title {
    font-size: 1.9rem;
  }
}
