:root {
  --paper: #f4eee3;
  --paper-strong: #e7d8c1;
  --paper-deep: #dbc6a5;
  --ink: #182126;
  --ink-soft: #5a666a;
  --forest: #27453f;
  --forest-deep: #182f2a;
  --rust: #b96a42;
  --gold: #d6b36b;
  --line: rgba(24, 33, 38, 0.12);
  --line-strong: rgba(24, 33, 38, 0.2);
  --card: rgba(255, 251, 245, 0.72);
  --shadow-soft: 0 24px 70px rgba(50, 36, 17, 0.1);
  --shadow-card: 0 20px 45px rgba(33, 24, 11, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: min(1160px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 33, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 38, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35) 10%, rgba(0, 0, 0, 0.7));
  opacity: 0.4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

code {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(24, 33, 38, 0.08);
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 0.92em;
}

h1,
h2,
h3,
.brand strong,
.story-title,
.post-title,
.feature-stat {
  margin: 0;
  font-family: "Baskerville", "Iowan Old Style", "Songti SC", "STSong", serif;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.compact-header {
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  color: #fff8ef;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 40%),
    linear-gradient(145deg, var(--forest) 0%, #1e322f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1.45rem;
}

.brand-copy small,
.eyebrow,
.story-meta,
.frame-note,
.footer-meta,
.panel-topline,
.post-overline,
.article-meta,
.section-heading p,
.detail-list dt,
.inline-caption,
.hero-notes li {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.brand-copy small,
.site-nav a,
.story-meta,
.frame-note,
.footer-meta,
.article-meta,
.section-heading p,
.detail-list dt,
.panel-topline,
.panel-footnote,
.hero-notes li,
.post-back a {
  color: var(--ink-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.pill-button,
.primary-button,
.secondary-button,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.pill-button,
.secondary-button,
.share-button {
  min-height: 44px;
  padding: 0 18px;
  background: rgba(255, 251, 245, 0.72);
  border-color: rgba(24, 33, 38, 0.08);
  box-shadow: 0 10px 24px rgba(50, 36, 17, 0.08);
}

.primary-button {
  min-height: 52px;
  padding: 0 22px;
  color: #fff8ef;
  font-weight: 600;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--forest) 0%, #1d3632 100%);
  box-shadow: 0 16px 34px rgba(39, 69, 63, 0.22);
}

.secondary-button {
  color: var(--ink);
}

.pill-button:hover,
.primary-button:hover,
.secondary-button:hover,
.share-button:hover,
.pill-button:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.share-button:focus-visible {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 38px;
  margin-bottom: 72px;
}

.hero-copy,
.visual-panel,
.story-card,
.story-article,
.empty-post {
  position: relative;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(250, 243, 232, 0.74));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-copy,
.visual-panel {
  min-height: 100%;
}

.hero-copy {
  padding: 42px;
}

.hero-copy::after,
.visual-panel::after,
.story-card::after,
.story-article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 40%);
}

.eyebrow {
  color: var(--forest);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-intro {
  margin-top: 22px;
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(24, 33, 38, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-notes li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 179, 107, 0.12);
}

.visual-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(214, 179, 107, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(24, 47, 42, 0.95), rgba(29, 38, 40, 0.92));
  color: #f8f1e6;
}

.visual-panel .panel-topline,
.visual-panel .panel-footnote {
  color: rgba(248, 241, 230, 0.74);
}

.panel-topline,
.panel-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-topline {
  opacity: 0.84;
  margin-bottom: 20px;
}

.panel-footnote {
  margin-top: 18px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.mini-frame-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-frame {
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.mini-frame:nth-child(3) {
  grid-column: span 2;
}

.mini-frame-visual,
.story-cover,
.frame-visual,
.post-hero-visual,
.inline-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background-color: #d9ccb6;
  background-position: center;
  background-size: cover;
}

.mini-frame-visual {
  aspect-ratio: 1 / 1.08;
}

.mini-frame-visual::after,
.story-cover::after,
.frame-visual::after,
.post-hero-visual::after,
.inline-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 40%);
}

.mini-frame h3,
.frame-card h3,
.story-title,
.post-title {
  font-size: 1.42rem;
}

.mini-frame h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.mini-frame p {
  margin-top: 6px;
  color: rgba(248, 241, 230, 0.76);
  line-height: 1.55;
  font-size: 0.92rem;
}

.section {
  margin-bottom: 72px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  margin-top: 8px;
}

.section-heading > p:last-child {
  margin-top: 10px;
  max-width: 62ch;
  color: rgba(24, 33, 38, 0.76);
  line-height: 1.75;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.split-heading > p {
  max-width: 42ch;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 50px rgba(33, 24, 11, 0.16);
}

.story-cover {
  aspect-ratio: 1.15 / 0.85;
}

.story-content {
  display: grid;
  gap: 10px;
}

.story-title {
  font-size: 1.78rem;
  line-height: 1.06;
}

.story-excerpt {
  color: rgba(24, 33, 38, 0.76);
  line-height: 1.72;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 33, 38, 0.06);
  color: rgba(24, 33, 38, 0.7);
  font-size: 0.86rem;
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.frame-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.74);
  box-shadow: var(--shadow-card);
}

.frame-card:nth-child(1),
.frame-card:nth-child(4) {
  grid-column: span 5;
}

.frame-card:nth-child(2),
.frame-card:nth-child(5) {
  grid-column: span 3;
}

.frame-card:nth-child(3),
.frame-card:nth-child(6) {
  grid-column: span 4;
}

.frame-visual {
  aspect-ratio: 1 / 1.08;
}

.frame-card h3 {
  font-size: 1.28rem;
}

.frame-card p:last-child {
  line-height: 1.7;
  color: rgba(24, 33, 38, 0.78);
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(24, 33, 38, 0.12);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-shell {
  display: grid;
  gap: 36px;
}

.post-back {
  margin: 4px 0 0;
}

.post-back a {
  position: relative;
  padding-left: 18px;
}

.post-back a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-45%) rotate(45deg);
}

.story-article,
.empty-post {
  padding: 32px;
}

.article-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.post-header-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.post-overline {
  color: var(--forest);
}

.post-title {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.post-subtitle {
  color: rgba(24, 33, 38, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.detail-list div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(24, 33, 38, 0.05);
}

.detail-list dd {
  margin: 8px 0 0;
  font-family: "Baskerville", "Iowan Old Style", "Songti SC", "STSong", serif;
  font-size: 1.18rem;
}

.post-hero-visual {
  min-height: 280px;
}

.article-body {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.article-body p,
.article-body li,
.article-body blockquote {
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(24, 33, 38, 0.88);
}

.article-body .lead {
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(24, 33, 38, 0.95);
}

.article-body h2 {
  margin-top: 10px;
  font-size: 1.7rem;
}

.article-body ul {
  margin: 0;
  padding-left: 1.25rem;
}

.article-body blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--rust);
  border-radius: 0 18px 18px 0;
  background: rgba(185, 106, 66, 0.08);
}

.inline-frame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.inline-frame-card {
  display: grid;
  gap: 10px;
}

.inline-frame {
  aspect-ratio: 1 / 1.12;
}

.inline-caption {
  color: var(--ink-soft);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.empty-post {
  display: grid;
  gap: 18px;
}

.theme-rain {
  background-image:
    linear-gradient(140deg, rgba(18, 34, 37, 0.45), rgba(18, 34, 37, 0.12)),
    radial-gradient(circle at 80% 22%, rgba(248, 182, 76, 0.82), transparent 16%),
    linear-gradient(180deg, #45636e 0%, #222a33 100%);
}

.theme-dawn {
  background-image:
    linear-gradient(180deg, rgba(28, 41, 55, 0.16), transparent 42%),
    radial-gradient(circle at 30% 22%, rgba(252, 215, 144, 0.88), transparent 18%),
    linear-gradient(180deg, #f8c58c 0%, #d17255 56%, #42364c 100%);
}

.theme-lake {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 35%),
    radial-gradient(circle at 70% 24%, rgba(255, 226, 165, 0.8), transparent 16%),
    linear-gradient(180deg, #7bb0bf 0%, #4f8590 44%, #223d44 100%);
}

.theme-night {
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 72% 28%, rgba(255, 95, 88, 0.72), transparent 18%),
    linear-gradient(180deg, #3f4567 0%, #241f31 100%);
}

.theme-ember {
  background-image:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 42% 26%, rgba(255, 218, 164, 0.8), transparent 16%),
    linear-gradient(180deg, #9b5b4d 0%, #6c3f42 48%, #322538 100%);
}

.theme-forest {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 44% 30%, rgba(222, 215, 153, 0.66), transparent 16%),
    linear-gradient(180deg, #577c68 0%, #2a5143 48%, #17332c 100%);
}

.has-image {
  background-size: cover;
  background-position: center;
}

.media-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: none;
  cursor: zoom-in;
}

.post-hero-trigger {
  min-height: 100%;
}

.post-hero-trigger .post-hero-visual {
  min-height: 280px;
}

.media-trigger .frame-visual,
.media-trigger .post-hero-visual,
.media-trigger .inline-frame {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.media-trigger:hover .frame-visual,
.media-trigger:hover .post-hero-visual,
.media-trigger:hover .inline-frame,
.media-trigger:focus-visible .frame-visual,
.media-trigger:focus-visible .post-hero-visual,
.media-trigger:focus-visible .inline-frame {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.media-trigger-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 248, 239, 0.24);
  border-radius: 999px;
  color: #fff8ef;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 19, 20, 0.42);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.media-trigger:hover .media-trigger-badge,
.media-trigger:focus-visible .media-trigger-badge {
  opacity: 1;
  transform: translateY(0);
}

body.lightbox-open {
  overflow: hidden;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(68, 47, 21, 0.2), transparent 35%),
    rgba(10, 13, 14, 0.9);
  backdrop-filter: blur(18px);
}

.site-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: #fff8ef;
  background: rgba(20, 23, 24, 0.7);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms ease;
}

.site-lightbox.is-visible .site-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.site-lightbox-topbar,
.site-lightbox-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-lightbox-counter,
.site-lightbox-meta {
  margin: 0;
  color: rgba(255, 248, 239, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.site-lightbox-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-lightbox-button:hover,
.site-lightbox-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 248, 239, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.site-lightbox-button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.site-lightbox-figure {
  display: grid;
  place-items: center;
  min-height: min(68vh, 760px);
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 25%),
    rgba(255, 255, 255, 0.02);
}

.site-lightbox-image {
  max-width: 100%;
  max-height: min(68vh, 760px);
  object-fit: contain;
}

.site-lightbox-caption {
  display: grid;
  gap: 8px;
}

.site-lightbox-caption h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.site-lightbox-caption p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 248, 239, 0.82);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  color: #fff8ef;
  background: rgba(24, 33, 38, 0.92);
  box-shadow: 0 18px 44px rgba(24, 33, 38, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .site-header,
  .split-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero,
  .story-grid,
  .detail-list,
  .inline-frame-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
  }

  .article-header {
    grid-template-columns: 1fr;
  }

  .frame-grid {
    grid-template-columns: 1fr 1fr;
  }

  .frame-card,
  .frame-card:nth-child(1),
  .frame-card:nth-child(2),
  .frame-card:nth-child(3),
  .frame-card:nth-child(4),
  .frame-card:nth-child(5),
  .frame-card:nth-child(6) {
    grid-column: auto;
  }

  .site-lightbox-dialog {
    width: min(100vw - 20px, 100%);
    max-height: calc(100vh - 20px);
    padding: 14px;
    border-radius: 24px;
  }

  .site-lightbox-figure {
    min-height: 52vh;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 24px, 100%);
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
  }

  .pill-button {
    width: 100%;
  }

  .hero-copy,
  .visual-panel,
  .story-card,
  .story-article,
  .empty-post {
    border-radius: 26px;
  }

  .hero-copy,
  .story-article,
  .empty-post {
    padding: 24px;
  }

  .visual-panel {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .frame-grid {
    grid-template-columns: 1fr;
  }

  .mini-frame-stack {
    grid-template-columns: 1fr;
  }

  .mini-frame:nth-child(3) {
    grid-column: auto;
  }

  .story-title {
    font-size: 1.58rem;
  }

  .post-title {
    font-size: 2.45rem;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}
