body {
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    linear-gradient(148deg, var(--sky-50) 0%, var(--sky-100) 43%, var(--sky-200) 100%);
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: -16%;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92) 0 10%, transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(121, 164, 155, 0.2) 0 9%, transparent 30%),
    radial-gradient(circle at 78% 58%, rgba(153, 193, 199, 0.24) 0 12%, transparent 34%),
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.72) 0 10%, transparent 30%);
  filter: blur(8px);
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.34) 0,
      rgba(255, 255, 255, 0.34) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: soft-light;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 100;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-4);
  transform: translateY(-180%);
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-control);
  background: var(--white-strong);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 14px;
  transition: transform var(--motion-fast) var(--ease-standard);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  height: 68px;
  margin-top: 18px;
}

.header-inner {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 8px 10px 8px 20px;
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-nav);
  background: rgba(248, 252, 252, 0.72);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding-inline: 4px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-roman {
  color: var(--ink-600);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
}

.nav a {
  min-width: 54px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: var(--ink-700);
  transition:
    color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.nav a.is-active {
  color: var(--cyan-700);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(211, 234, 233, 0.74);
  box-shadow:
    0 6px 18px rgba(50, 102, 105, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(70, 107, 111, 0.12);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  cursor: pointer;
  transition:
    color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.masthead {
  padding: clamp(42px, 5vw, 66px) 0 clamp(34px, 5vw, 56px);
}

.masthead-panel {
  min-height: clamp(520px, 64vh, 650px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-feature);
  background:
    linear-gradient(128deg, rgba(250, 253, 253, 0.92), rgba(239, 248, 248, 0.78));
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(10px) saturate(108%);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
}

.masthead-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 12%;
  bottom: -62%;
  border-radius: 50%;
  background: rgba(121, 164, 155, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.masthead-copy,
.masthead-atmosphere {
  position: relative;
  z-index: 1;
}

.masthead-kicker,
.section-kicker,
.featured-kicker,
.index-eyebrow,
.footer-roman {
  color: var(--cyan-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.masthead-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.masthead-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.52;
}

.masthead-title {
  margin: var(--space-5) 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: clamp(62px, 6.6vw, 84px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.masthead-tagline {
  margin: 0;
  color: var(--ink-700);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.masthead-note {
  max-width: 610px;
  margin: var(--space-6) 0 0;
  color: var(--ink-700);
  font-family: var(--font-reading);
  font-size: 16px;
  line-height: 1.9;
}

.masthead-entry {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  color: var(--cyan-700);
  font-size: 14px;
  font-weight: 600;
  transition:
    color var(--motion-fast) var(--ease-standard),
    gap var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.masthead-entry span:first-child {
  border-bottom: 1px solid rgba(47, 102, 105, 0.34);
}

.masthead-atmosphere {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, rgba(189, 220, 219, 0.7), rgba(224, 239, 240, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -36px 72px rgba(67, 111, 113, 0.08),
    0 24px 56px rgba(56, 91, 96, 0.1);
}

.mist-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.mist-orb-one {
  width: 190px;
  height: 190px;
  top: -46px;
  right: -28px;
  background: rgba(255, 255, 255, 0.74);
}

.mist-orb-two {
  width: 210px;
  height: 210px;
  bottom: -74px;
  left: -46px;
  background: rgba(99, 157, 153, 0.2);
}

.notice-board {
  position: absolute;
  z-index: 2;
  inset: 32px 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    linear-gradient(138deg, rgba(250, 253, 253, 0.68), rgba(232, 246, 244, 0.42));
  box-shadow:
    0 26px 64px rgba(45, 80, 84, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(114%);
  -webkit-backdrop-filter: blur(20px) saturate(114%);
  transform: rotate(-1.2deg);
}

.notice-kicker {
  color: var(--cyan-600);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notice-title {
  margin: 24px 0;
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.035em;
}

.notice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.notice-mark {
  position: absolute;
  z-index: 1;
  color: rgba(47, 102, 105, 0.12);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.notice-mark-one {
  top: 10px;
  right: 12px;
  font-size: 54px;
}

.notice-mark-two {
  bottom: 4px;
  left: 18px;
  font-size: 18px;
}

.word-panel {
  position: absolute;
  min-width: 150px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(247, 252, 252, 0.38);
  box-shadow:
    0 18px 42px rgba(52, 91, 94, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.word-panel span {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.word-panel small {
  color: var(--ink-600);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.word-panel-one {
  top: 24px;
  left: 24px;
  transform: rotate(-5deg);
}

.word-panel-two {
  top: 94px;
  right: 22px;
  transform: rotate(4deg);
}

.word-panel-three {
  bottom: 20px;
  left: 31%;
  transform: rotate(-1.5deg);
}

.publication-section {
  padding: clamp(34px, 5vw, 56px) 0 clamp(96px, 10vw, 136px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-7);
  margin-bottom: var(--space-6);
  padding-inline: 4px;
}

.section-title {
  margin: 4px 0 0;
  font-size: clamp(34px, 3.6vw, 42px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.section-desc {
  width: min(54vw, 680px);
  max-width: 680px;
  margin: 0;
  color: var(--ink-600);
  font-family: var(--font-reading);
  font-size: 15px;
  line-height: 1.85;
  text-align: right;
}

.hitokoto-line a {
  display: block;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--ease-standard);
}

.publication-feed {
  display: grid;
  gap: var(--space-8);
}

.featured-entry {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-feature);
  background:
    linear-gradient(130deg, rgba(250, 253, 253, 0.92), rgba(238, 248, 248, 0.8));
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(10px) saturate(108%);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
  transition:
    transform var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.featured-entry::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -180px;
  left: 28%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  filter: blur(16px);
  pointer-events: none;
}

.featured-layout {
  position: relative;
  min-height: 266px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.featured-copy {
  padding: 12px clamp(22px, 2.8vw, 32px);
}

.featured-entry.no-cover .featured-layout {
  grid-template-columns: minmax(0, 820px);
}

.featured-entry.no-cover::after {
  content: "半夏";
  position: absolute;
  right: clamp(26px, 6vw, 76px);
  bottom: -34px;
  color: rgba(57, 120, 122, 0.07);
  font-family: var(--font-serif);
  font-size: clamp(100px, 15vw, 190px);
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.featured-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.featured-title {
  max-width: 24ch;
  margin: 10px 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(28px, 2.7vw, 34px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-link {
  display: block;
  transition: color var(--motion-fast) var(--ease-standard);
}

.featured-excerpt {
  max-width: 640px;
  margin: 0;
  color: var(--ink-700);
  font-family: var(--font-reading);
  font-size: 16px;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-cover {
  display: block;
  width: 320px;
  height: 200px;
  min-width: 0;
  min-height: 0;
  max-height: none;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-image);
  background: var(--sky-200);
  box-shadow:
    0 20px 44px rgba(39, 72, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.featured-cover img,
.index-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform var(--motion-base) var(--ease-standard),
    filter var(--motion-base) var(--ease-standard);
}

.entry-meta,
.index-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
}

.taxonomy-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding-inline: 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 11px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.34);
  transition:
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.featured-action {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--cyan-700);
  font-size: 13px;
  font-weight: 650;
  transition:
    gap var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.editorial-index {
  display: grid;
  gap: 20px;
}

.index-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  padding-inline: 4px;
}

.index-heading h3 {
  margin: 4px 0 0;
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.index-heading > span {
  color: var(--ink-600);
  font-size: 12px;
}

.index-entry {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  gap: 10px 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-card);
  background: var(--material-content);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px) saturate(106%);
  -webkit-backdrop-filter: blur(8px) saturate(106%);
  transition:
    transform var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.index-entry.has-cover {
  grid-template-columns: 54px minmax(0, 1fr) 320px;
  grid-template-areas:
    "number date cover"
    "number content cover"
    "number meta cover";
}

.index-entry.no-cover {
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "number date"
    "number content"
    "number meta";
  padding-right: clamp(28px, 8vw, 104px);
}

.index-entry.no-cover::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -76px;
  bottom: -104px;
  border-radius: 50%;
  background: rgba(121, 164, 155, 0.16);
  filter: blur(8px);
  pointer-events: none;
}

.index-number {
  grid-area: number;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 13px;
  color: var(--cyan-700);
  background: rgba(220, 239, 238, 0.56);
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0.1em;
}

.index-date {
  grid-area: date;
  color: var(--ink-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.index-link {
  grid-area: content;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.index-title {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 650;
  line-height: 1.48;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.index-title a {
  transition: color var(--motion-fast) var(--ease-standard);
}

.index-excerpt {
  max-width: 720px;
  margin: var(--space-2) 0 0;
  color: var(--ink-700);
  font-family: var(--font-reading);
  font-size: 15px;
  line-height: 1.78;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.index-cover {
  grid-area: cover;
  width: 320px;
  height: 200px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background: var(--sky-200);
  box-shadow: 0 12px 32px rgba(42, 75, 80, 0.1);
}

.index-meta {
  grid-area: meta;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.index-meta .taxonomy-link {
  min-height: 38px;
}

.state-message {
  padding: var(--space-8);
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-card);
  color: var(--ink-600);
  background: var(--white-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.state-message.error {
  color: var(--danger);
}

.site-footer {
  position: relative;
  padding: 0 0 var(--space-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-7);
  align-items: end;
  padding: var(--space-7);
  border: 1px solid var(--line-glass);
  border-radius: var(--radius-card);
  background: rgba(248, 252, 252, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.footer-title {
  margin: 2px 0 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-copy {
  margin: var(--space-2) 0 0;
  color: var(--ink-700);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 16px;
  font-size: 13px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-700);
  transition:
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

@media (hover: hover) {
  .nav a:hover {
    color: var(--cyan-700);
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.38);
    transform: translateY(-1px);
  }

  .hitokoto-line a:hover {
    color: var(--cyan-700);
  }

  .nav a.is-active:hover {
    background: rgba(211, 234, 233, 0.84);
  }

  .nav-toggle:hover {
    color: var(--cyan-700);
    background: rgba(255, 255, 255, 0.64);
  }

  .masthead-entry:hover,
  .featured-action:hover {
    gap: 15px;
    color: var(--cyan-600);
    transform: translateY(-1px);
  }

  .featured-entry:hover,
  .index-entry:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.84);
    background-color: var(--white-glass-hover);
    box-shadow: var(--shadow-hover);
  }

  .featured-entry:hover .featured-cover img,
  .index-entry:hover .index-cover img {
    transform: scale(1.015);
    filter: saturate(1.03);
  }

  .featured-link:hover,
  .index-title a:hover,
  .footer-links a:hover {
    color: var(--cyan-700);
  }

  .taxonomy-link:hover {
    color: var(--cyan-700);
    border-color: rgba(83, 132, 132, 0.2);
    background: rgba(235, 247, 246, 0.7);
    transform: translateY(-1px);
  }

  .footer-links a:hover {
    transform: translateY(-1px);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header-inner,
  .masthead-panel,
  .featured-entry,
  .index-entry,
  .state-message,
  .footer-grid,
  .nav {
    background: rgba(246, 251, 251, 0.96);
  }
}

@media (max-width: 1024px) {
  .masthead-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    gap: var(--space-7);
    padding: var(--space-7);
  }

  .masthead-title {
    font-size: clamp(60px, 8vw, 78px);
  }

  .featured-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: var(--space-6);
  }

  .featured-copy {
    padding: var(--space-6);
  }

  .index-entry.has-cover {
    grid-template-columns: 48px minmax(0, 1fr) 250px;
    gap: 8px 18px;
  }

  .featured-cover,
  .index-cover {
    width: 250px;
    height: 156px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 12px;
    height: 60px;
    margin-top: 12px;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 7px 8px 7px 16px;
    border-radius: 20px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-roman {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line-glass);
    border-radius: 20px;
    background: rgba(248, 252, 252, 0.84);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(18px) saturate(112%);
    -webkit-backdrop-filter: blur(18px) saturate(112%);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    min-width: 0;
  }

  .masthead {
    padding: var(--space-7) 0 var(--space-6);
  }

  .masthead-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding: var(--space-7);
    border-radius: 26px;
  }

  .masthead-title {
    font-size: clamp(58px, 16vw, 76px);
  }

  .masthead-atmosphere {
    min-height: 300px;
  }

  .notice-board {
    inset: 26px 22px 24px;
  }

  .word-panel {
    min-width: 142px;
    min-height: 102px;
    padding: 17px;
  }

  .word-panel span {
    font-size: 28px;
  }

  .publication-section {
    padding: var(--space-6) 0 var(--space-9);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: var(--space-3);
  }

  .section-desc {
    width: 100%;
    max-width: 620px;
    text-align: left;
  }

  .publication-feed {
    gap: var(--space-7);
  }

  .featured-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-entry,
  .index-entry.has-cover,
  .index-entry.no-cover {
    height: auto;
  }

  .featured-cover {
    order: -1;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .featured-copy {
    padding: var(--space-6) var(--space-5) var(--space-5);
  }

  .featured-title {
    font-size: clamp(32px, 8vw, 46px);
  }

  .index-entry.has-cover,
  .index-entry.no-cover {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "number date"
      "cover cover"
      "content content"
      "meta meta";
    gap: 14px;
    padding: 18px;
  }

  .index-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin-bottom: 4px;
  }

  .index-meta {
    margin-top: 2px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-6);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .masthead-panel {
    gap: var(--space-6);
    padding: var(--space-5);
    border-radius: 24px;
  }

  .masthead-kicker,
  .section-kicker,
  .featured-kicker,
  .index-eyebrow,
  .footer-roman {
    font-size: 9px;
  }

  .masthead-title {
    margin-top: var(--space-4);
    font-size: clamp(48px, 16vw, 62px);
    letter-spacing: 0.06em;
  }

  .masthead-tagline {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .masthead-note {
    margin-top: var(--space-5);
    font-size: 14px;
  }

  .masthead-atmosphere {
    min-height: 258px;
    border-radius: 20px;
  }

  .notice-board {
    inset: 18px 14px 16px;
    padding: 22px;
    border-radius: 18px;
  }

  .notice-title {
    margin: 18px 0;
    font-size: 22px;
    line-height: 1.62;
  }

  .notice-meta {
    font-size: 9px;
  }

  .word-panel {
    min-width: 116px;
    min-height: 82px;
    padding: 13px;
    border-radius: 16px;
  }

  .word-panel span {
    font-size: 23px;
  }

  .word-panel-one {
    top: 18px;
    left: 16px;
  }

  .word-panel-two {
    top: 62px;
    right: 14px;
  }

  .word-panel-three {
    bottom: 12px;
    left: 27%;
  }

  .section-title {
    font-size: 34px;
  }

  .featured-entry {
    padding: 10px;
    border-radius: 24px;
  }

  .featured-cover {
    border-radius: 18px;
  }

  .featured-copy {
    padding: var(--space-5) 12px 14px;
  }

  .featured-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .featured-excerpt {
    font-size: 15px;
  }

  .entry-meta,
  .index-meta {
    gap: 6px;
  }

  .taxonomy-link {
    padding-inline: 10px;
  }

  .index-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .index-heading h3 {
    font-size: 30px;
  }

  .index-entry.has-cover,
  .index-entry.no-cover {
    padding: 16px;
    border-radius: 20px;
  }

  .index-title {
    font-size: 22px;
  }

  .index-cover {
    border-radius: 16px;
  }

  .site-footer {
    padding-bottom: var(--space-5);
  }

  .footer-grid {
    padding: var(--space-5);
    border-radius: 20px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding-left: 14px;
  }

  .brand-name {
    font-size: 18px;
  }

  .masthead-title {
    font-size: 48px;
  }

  .masthead-entry {
    margin-top: var(--space-4);
  }
}

/* Dynamic notice desk */
.home-page .masthead-atmosphere {
  overflow: visible;
}

.home-page .mist-orb,
.home-page .notice-mark {
  pointer-events: none;
}

.notice-stack {
  position: absolute;
  z-index: 3;
  inset: 30px 26px;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.notice-layer {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  pointer-events: none;
  transform-origin: 50% 92%;
  transition:
    transform var(--motion-fluid) var(--ease-spring),
    background-color var(--motion-slow) ease,
    box-shadow var(--motion-fluid) ease;
}

.notice-layer-back {
  background: linear-gradient(145deg, rgba(167, 207, 205, 0.46), rgba(231, 243, 242, 0.36));
  box-shadow: 0 22px 48px rgba(46, 84, 87, 0.1);
  transform: translate(18px, 13px) rotate(1.3deg);
}

.notice-layer-middle {
  background: linear-gradient(145deg, rgba(239, 248, 247, 0.58), rgba(190, 220, 219, 0.38));
  box-shadow: 0 18px 42px rgba(46, 84, 87, 0.09);
  transform: translate(-8px, 8px) rotate(-0.9deg);
}

.home-page .masthead-atmosphere .notice-board {
  --notice-tilt-x: 0deg;
  --notice-tilt-y: 0deg;
  --notice-light-x: 50%;
  --notice-light-y: 20%;
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--notice-light-x) var(--notice-light-y), rgba(255, 255, 255, 0.74), transparent 34%),
    linear-gradient(138deg, rgba(251, 254, 254, 0.78), rgba(226, 243, 242, 0.58));
  box-shadow:
    0 28px 66px rgba(45, 80, 84, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(67, 111, 113, 0.05);
  backdrop-filter: blur(12px) saturate(116%);
  -webkit-backdrop-filter: blur(12px) saturate(116%);
  transform: rotate(-0.45deg) rotateX(var(--notice-tilt-x)) rotateY(var(--notice-tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 180ms var(--ease-standard),
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fluid) ease;
}

.home-page .masthead-atmosphere .notice-board::after {
  content: "";
  position: absolute;
  inset: 1px 10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  pointer-events: none;
}

.notice-head,
.notice-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.notice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.notice-live-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #75b8a5;
  box-shadow: 0 0 0 0 rgba(117, 184, 165, 0.28);
  animation: notice-live 3.4s ease-in-out infinite;
}

.notice-kind,
.notice-eyebrow{
  color: var(--cyan-600);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.15em;
}

.notice-kind {
  padding: 5px 9px;
  border: 1px solid rgba(72, 119, 120, 0.1);
  border-radius: 9px;
  background: rgba(244, 251, 250, 0.42);
}

.notice-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 22px 0 16px;
  animation: notice-copy-enter 720ms var(--ease-spring) both;
}

.notice-content.is-revealing > * {
  animation: notice-copy-enter 620ms var(--ease-spring) both;
}

.notice-content.is-revealing .notice-title {
  animation-delay: 55ms;
}

.notice-content.is-revealing .notice-source {
  animation-delay: 110ms;
}

.notice-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
}

.home-page .masthead-atmosphere .notice-title {
  max-width: 11em;
  min-height: 2.9em;
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: clamp(29px, 2.9vw, 39px);
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.notice-source {
  margin: 18px 0 0;
  color: var(--ink-600);
  font-family: var(--font-reading);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.notice-pagination {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.notice-page {
  width: 22px;
  height: 44px;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.notice-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(58, 94, 98, 0.25);
  transform: translate(-50%, -50%);
  transition:
    width var(--motion-fluid) var(--ease-spring),
    border-radius var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.notice-page.is-active::before {
  width: 18px;
  border-radius: 5px;
  background: var(--cyan-600);
}

@keyframes notice-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(117, 184, 165, 0.28); opacity: 0.72; }
  50% { box-shadow: 0 0 0 5px rgba(117, 184, 165, 0); opacity: 1; }
}

@keyframes notice-copy-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .notice-stack:hover .notice-layer-back {
    transform: translate(25px, 20px) rotate(2.4deg);
  }

  .notice-stack:hover .notice-layer-middle {
    transform: translate(-17px, 14px) rotate(-2deg);
  }
}

html[data-theme="dark"] .home-page .masthead-atmosphere .notice-board {
  border-color: rgba(190, 226, 224, 0.13);
  background:
    radial-gradient(circle at var(--notice-light-x) var(--notice-light-y), rgba(112, 160, 160, 0.14), transparent 34%),
    linear-gradient(138deg, rgba(27, 45, 48, 0.82), rgba(19, 35, 38, 0.7));
  box-shadow:
    0 28px 66px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

html[data-theme="dark"] .home-page .notice-layer-back {
  background: rgba(49, 85, 85, 0.42);
  border-color: rgba(190, 226, 224, 0.1);
}

html[data-theme="dark"] .home-page .notice-layer-middle {
  background: rgba(30, 54, 57, 0.62);
  border-color: rgba(190, 226, 224, 0.1);
}

html[data-theme="dark"] .home-page .notice-kind{
  border-color: rgba(190, 226, 224, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .home-page .masthead-atmosphere .notice-board{
    background: rgba(242, 249, 249, 0.97);
  }
}

@media (max-width: 768px) {
  .home-page .masthead-atmosphere {
    min-height: 330px;
  }

  .notice-stack {
    inset: 24px 20px;
  }

  .home-page .masthead-atmosphere .notice-title {
    max-width: 13em;
    min-height: 2.7em;
    font-size: clamp(25px, 6.8vw, 34px);
  }
}

@media (max-width: 480px) {
  .home-page .masthead-atmosphere {
    min-height: 330px;
  }

  .notice-stack {
    inset: 18px 14px;
  }

  .notice-layer {
    inset: 5px;
    border-radius: 20px;
  }

  .notice-layer-back {
    transform: translate(9px, 9px) rotate(1deg);
  }

  .notice-layer-middle {
    transform: translate(-5px, 5px) rotate(-0.7deg);
  }

  .home-page .masthead-atmosphere .notice-board {
    padding: 20px;
    border-radius: 19px;
    transform: none;
  }

  .home-page .masthead-atmosphere .notice-title {
    min-height: 3em;
    font-size: 23px;
    line-height: 1.5;
  }

  .notice-content {
    padding: 15px 0 9px;
  }

  .notice-source {
    margin-top: 10px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-live-dot,
  .notice-content,
  .notice-content.is-revealing > * {
    animation: none;
  }

  .notice-layer,
  .home-page .masthead-atmosphere .notice-board{
    transition: none;
  }

  .home-page .masthead-atmosphere .notice-board {
    transform: none;
  }
}

/* Notice board revision: manual, calm and typography-led */
.notice-stack {
  perspective: none;
}

.notice-layer,
.notice-layer-back,
.notice-layer-middle,
.notice-stack:hover .notice-layer-back,
.notice-stack:hover .notice-layer-middle {
  transition: none;
}

.notice-layer-back,
.notice-stack:hover .notice-layer-back {
  box-shadow: 0 16px 34px rgba(46, 84, 87, 0.075);
  transform: translate(14px, 11px) rotate(0.8deg);
}

.notice-layer-middle,
.notice-stack:hover .notice-layer-middle {
  box-shadow: 0 12px 28px rgba(46, 84, 87, 0.065);
  transform: translate(-6px, 6px) rotate(-0.55deg);
}

.home-page .masthead-atmosphere .notice-board,
.home-page .masthead-atmosphere .notice-board:hover {
  background:
    linear-gradient(138deg, rgba(251, 254, 254, 0.82), rgba(228, 243, 242, 0.66));
  box-shadow:
    0 22px 50px rgba(45, 80, 84, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(67, 111, 113, 0.04);
  transform: rotate(-0.28deg);
  transition: border-color var(--motion-fast) ease;
}

.home-page .masthead-atmosphere .notice-board::after {
  right: 12%;
  left: 12%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
}

.notice-content {
  padding: 26px 0 22px;
}

.notice-eyebrow {
  margin-bottom: 14px;
}

.home-page .masthead-atmosphere .notice-title {
  max-width: 12em;
  min-height: 2.8em;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.55;
}

.notice-source {
  max-width: 28em;
  margin-top: 20px;
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.045em;
}

.notice-board[data-notice-mode="poem"] .notice-eyebrow {
  font-size: 10px;
}

.notice-board[data-notice-mode="poem"] .notice-source {
  color: var(--ink-700);
  font-size: 14px;
}

.notice-board[data-notice-mode="solar-term"] .notice-eyebrow,
.notice-board[data-notice-mode="shichen"] .notice-eyebrow {
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.notice-board[data-notice-mode="solar-term"] .notice-title,
.notice-board[data-notice-mode="shichen"] .notice-title {
  min-height: 2.7em;
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.58;
}

.notice-board[data-notice-mode="solar-term"] .notice-source,
.notice-board[data-notice-mode="shichen"] .notice-source {
  padding-left: 13px;
  border-left: 2px solid rgba(71, 126, 125, 0.32);
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.65;
}

.notice-footer {
  justify-content: flex-start;
}

.notice-pagination {
  width: min(100%, 248px);
  min-height: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(70, 112, 114, 0.1);
  border-radius: 15px;
  background: rgba(239, 248, 247, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.notice-page {
  width: auto;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition:
    color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.notice-page::before {
  display: none;
}

.notice-page.is-active {
  color: var(--cyan-700);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(251, 254, 254, 0.76);
  box-shadow:
    0 5px 14px rgba(45, 88, 91, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

html[data-theme="dark"] .home-page .masthead-atmosphere .notice-board,
html[data-theme="dark"] .home-page .masthead-atmosphere .notice-board:hover {
  border-color: rgba(190, 201, 255, 0.16);
  background:
    linear-gradient(138deg, rgba(18, 27, 52, 0.92), rgba(16, 23, 46, 0.84));
  box-shadow:
    0 22px 50px rgba(0, 2, 20, 0.27),
    inset 0 1px 0 rgba(221, 228, 255, 0.1),
    inset 0 -1px 0 rgba(113, 132, 199, 0.06);
}

html[data-theme="dark"] .home-page .notice-layer-back {
  border-color: rgba(186, 199, 246, 0.12);
  background: rgba(46, 59, 94, 0.46);
}

html[data-theme="dark"] .home-page .mist-orb-one {
  background: rgba(115, 134, 199, 0.12);
}

html[data-theme="dark"] .home-page .mist-orb-two {
  background: rgba(76, 95, 158, 0.1);
}

html[data-theme="dark"] .home-page .notice-layer-middle {
  border-color: rgba(186, 199, 246, 0.11);
  background: rgba(29, 40, 72, 0.64);
}

html[data-theme="dark"] .home-page .notice-pagination {
  border-color: rgba(190, 201, 255, 0.1);
  background: rgba(12, 19, 40, 0.42);
  box-shadow: inset 0 1px 0 rgba(221, 228, 255, 0.055);
}

html[data-theme="dark"] .home-page .notice-page.is-active {
  border-color: rgba(190, 201, 255, 0.14);
  background: rgba(79, 94, 151, 0.3);
  box-shadow: none;
}

html[data-theme="dark"] .home-page .notice-board[data-notice-mode="solar-term"] .notice-source,
html[data-theme="dark"] .home-page .notice-board[data-notice-mode="shichen"] .notice-source {
  border-left-color: rgba(142, 164, 218, 0.28);
}

@media (hover: hover) {
  .notice-page:hover {
    color: var(--cyan-700);
    background: rgba(255, 255, 255, 0.42);
  }
}

@media (max-width: 480px) {
  .notice-content {
    padding: 17px 0 13px;
  }

  .home-page .masthead-atmosphere .notice-title {
    min-height: 3em;
    font-size: 24px;
  }

  .notice-board[data-notice-mode="solar-term"] .notice-eyebrow,
  .notice-board[data-notice-mode="shichen"] .notice-eyebrow {
    font-size: 17px;
  }

  .notice-board[data-notice-mode="solar-term"] .notice-title,
  .notice-board[data-notice-mode="shichen"] .notice-title {
    font-size: 23px;
  }

  .notice-source,
  .notice-board[data-notice-mode="poem"] .notice-source,
  .notice-board[data-notice-mode="solar-term"] .notice-source,
  .notice-board[data-notice-mode="shichen"] .notice-source {
    margin-top: 12px;
    font-size: 12px;
  }

  .notice-pagination {
    width: 100%;
  }
}
