/* ============================================================
   LINH LAN Editorial Vol. 03 — shared page chrome
   Each E-page is 1080×1080 (IG Feed) laid out like a magazine spread.
   Consistent masthead + folio at the corners.
   ============================================================ */
.mag-page {
  background: var(--surface);
  color: var(--ink);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mag-page .masthead {
  position: absolute; top: 24px; left: 30px; right: 30px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
}
.mag-page .masthead .title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.30em; text-transform: uppercase;
  font-size: 10px;
  color: var(--ink);
}
.mag-page .masthead .title em {
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.30em;
}
.mag-page .masthead .rag {
  font-family: var(--font-ui);
  font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.mag-page .masthead.light .title { color: var(--ivory); }
.mag-page .masthead.light .rag { color: rgba(251,248,248,0.75); }

.mag-page .folio {
  position: absolute; bottom: 20px; left: 30px; right: 30px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
  font-family: var(--font-ui);
  font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
}
.mag-page .folio .page-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
}
.mag-page .folio.light { color: rgba(251,248,248,0.7); }
.mag-page .folio.light .page-num { color: var(--ivory); }

.mag-page .hairline {
  position: absolute; left: 30px; right: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.mag-page .hairline.top { top: 48px; }
.mag-page .hairline.bottom { bottom: 42px; }
