/* ─────────────────────────────────────────
   PLAY GROUND PAGE — specific styles
───────────────────────────────────────── */

/* ── Nav active state ── */
.nav-link--active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Page sections ── */
.pg-section {
  margin-left: var(--page-margin);
  margin-right: var(--page-margin);
  margin-bottom: 24px;
}

/* First section has extra top margin to clear fixed nav */
.pg-section--first {
  margin-top: 124px;
}

/* ── Hero heading ── */
.pg-hero-heading {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 80px;
  color: var(--black);
  margin-bottom: 26px;
}

/* ── Thin divider line ── */
.pg-divider {
  height: 2px;
  background: #d2d1d4;
  margin-bottom: 43px;
}

/* ── Category label row ── */
.pg-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

/* Circle icon */
.pg-category-dot {
  width: 12px;
  height: 12px;
  border: 1.8px solid #83808c;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Category label text */
.pg-category-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--black);
}

/* ── 3-column image grid ── */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pg-grid-img {
  width: 100%;
  height: 258px;
  object-fit: cover;
  display: block;
}

/* ── Footer top margin ── */
.footer {
  margin-top: 186px;
}
