.hero {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  min-height: 340px;
}

.hero-divider {
  background: var(--rule);
  margin: 2rem 0;
}

.hero-word {
  padding: 3rem 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--jet);
  background-image: radial-gradient(
    circle,
    var(--dot-color-inv) var(--dot-size),
    transparent var(--dot-size)
  );
  background-size: var(--dot-space) var(--dot-space);
}

.hero-about {
  padding: 3rem 2.5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  background: var(--parchment);
}

/* ── Dictionary entry ── */
.entry-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 0.9rem;
}

.entry-headword {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.entry-headword a {
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid var(--periwinkle-dim);
  transition: color 0.2s, border-color 0.2s;
}

.entry-headword a:hover {
  color: var(--periwinkle);
  border-bottom-color: var(--periwinkle);
}

.entry-pronunciation {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(236, 236, 235, 0.5);
  margin-bottom: 1.1rem;
}

.entry-pos {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(236, 236, 235, 0.55);
  margin-bottom: 0.7rem;
}

.entry-def {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(236, 236, 235, 0.6);
  max-width: 38ch;
  margin-bottom: 1.2rem;
}

.entry-ex {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(236, 236, 235, 0.45);
  border-left: 2px solid var(--periwinkle-dim);
  padding-left: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

/* ── About panel ── */
.about-hed {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 0.2rem;
}

.about-body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 40ch;
}

.about-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--periwinkle-dim);
  padding-bottom: 2px;
  transition: color 0.2s, letter-spacing 0.2s;
}

.about-cta:hover {
  color: var(--periwinkle);
  letter-spacing: 0.2em;
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  background: var(--rule);
}

/* ── Wiki WOTD output overrides ── */
.wyr-wotd b,
.wyr-wotd strong {
  font-family: var(--font-display);
  font-weight: 400;
}

.wyr-wotd a {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid var(--periwinkle-dim);
  transition: color 0.2s, border-color 0.2s;
}

.wyr-wotd a:hover {
  color: var(--periwinkle);
  border-bottom-color: var(--periwinkle);
}

.wyr-wotd ol {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(236, 236, 235, 0.6);
  padding-left: 1.2em;
}

.wyr-wotd ol li + li {
  margin-top: 0.4rem;
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-divider {
    display: none;
  }
  .hero-word,
  .hero-about {
    padding: 2rem 1.5rem;
  }
}