  /* ============ banner (photo, shared treatment) ============ */
  .banner {
      position: relative;
      overflow: hidden;
      min-height: clamp(346px, 50svh, 560px);
      display: flex;
      align-items: flex-end;
      padding: 124px 0 64px;
      background:
          radial-gradient(120% 140% at 50% -30%, #0D1426 0%, var(--space-900) 60%),
          linear-gradient(180deg, #06080F 0%, #04050C 100%);
      border-bottom: 1px solid var(--line);
      margin-top: 64px;
  }

  .banner-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden
  }

  .banner-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 45%;
  }

  .banner-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120% 95% at 72% 12%, rgba(231, 196, 92, .20), transparent 58%);
      mix-blend-mode: overlay
  }

  .banner-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
  }

  .pass {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      overflow: hidden
  }

  .sat {
      position: absolute;
      top: 0;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 40%, var(--gold-bright), var(--gold) 55%, var(--gold-deep) 100%);
      box-shadow: 0 0 10px 2px rgba(243, 215, 126, .9), 0 0 24px 7px rgba(231, 196, 92, .35);
      offset-path: path("M -60 470 C 340 180, 980 120, 1560 330");
      offset-rotate: auto;
      animation: pass 22s linear infinite
  }

  .sat::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 50%;
      width: 46px;
      height: 2px;
      transform: translateY(-50%);
      background: linear-gradient(90deg, rgba(231, 196, 92, 0), rgba(231, 196, 92, .5));
      border-radius: 2px
  }

  @keyframes pass {
      0% {
          offset-distance: 0%;
          opacity: 0
      }

      8% {
          opacity: 1
      }

      88% {
          opacity: 1
      }

      100% {
          offset-distance: 100%;
          opacity: 0
      }
  }

  .banner .wrap {
      position: relative;
      z-index: 3
  }

  .crumbs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted)
  }

  .crumbs a {
      text-decoration: none;
      transition: color .2s
  }

  .crumbs a:hover {
      color: var(--gold)
  }

  .crumbs .sl {
      color: var(--line)
  }

  .crumbs [aria-current] {
      color: var(--ink)
  }

  .banner h1 {
      font-family: var(--jp-serif);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: .03em;
      font-size: clamp(38px, 5.6vw, 64px)
  }

  .banner .en {
      display: block;
      margin-top: 14px;
      font-family: var(--en);
      font-size: clamp(13px, 1.4vw, 15px);
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold)
  }

  /* ============ news section ============ */
  .news {
      padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px)
  }

  /* filter bar (maps to WP category archive links) */
  .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 44px;
      padding-bottom: 26px;
      border-bottom: 1px solid var(--hair)
  }

  .filters .flabel {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-right: 6px
  }

  .chip {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .04em;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 16px;
      text-decoration: none;
      transition: color .2s, border-color .2s, background .2s;
      cursor: pointer;
      background: none
  }

  .chip:hover,
  .chip:focus-visible {
      color: var(--ink);
      border-color: var(--gold)
  }

  .chip.is-active {
      color: var(--space-900);
      background: var(--gold);
      border-color: var(--gold)
  }

  .chip:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 2px
  }

  /* ---- the post grid (WP: the loop renders one .post-card per post) ---- */
  .post-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 2.4vw, 30px)
  }

  .post-card {
      position: relative;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--hair);
      border-radius: 6px;
      overflow: hidden;
      background: rgba(255, 255, 255, .014);
      transition: border-color .3s, transform .3s, box-shadow .3s
  }

  .post-card:hover {
      border-color: var(--line);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .8)
  }

  /* whole card is clickable via a stretched link (WP: the_permalink) */
  .post-card .stretch {
      position: absolute;
      inset: 0;
      z-index: 3
  }

  .post-card .stretch:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: -2px;
      border-radius: 6px
  }

  .thumb {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--space-800);
      border-bottom: 1px solid var(--hair)
  }

  .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s cubic-bezier(.2, .7, .2, 1)
  }

  .post-card:hover .thumb img {
      transform: scale(1.05)
  }

  /* placeholder pattern when there's no featured image */
  .thumb.ph {
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(120% 120% at 70% 20%, rgba(201, 146, 10, .10), transparent 60%), var(--space-800)
  }

  .thumb.ph::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .5;
      background-image: linear-gradient(var(--hair) 1px, transparent 1px), linear-gradient(90deg, var(--hair) 1px, transparent 1px);
      background-size: 26px 26px;
      mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 80%)
  }

  .thumb.ph .ph-mark {
      position: relative;
      font-family: var(--en);
      letter-spacing: .3em;
      font-size: 13px;
      color: var(--gold);
      opacity: .7
  }

  /* category tag on the thumbnail (WP: the_category) */
  .cat {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      font-family: var(--mono);
      font-size: 10.5px;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 999px;
      color: var(--ink);
      background: rgba(5, 7, 15, .7);
      border: 1px solid var(--line);
      backdrop-filter: blur(6px)
  }

  .cat .d {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-right: 7px;
      vertical-align: middle;
      background: var(--c, var(--gold))
  }

  .cat[data-cat="press"] {
      --c: var(--cat-press)
  }

  .cat[data-cat="dev"] {
      --c: var(--cat-dev)
  }

  .cat[data-cat="launch"] {
      --c: var(--cat-launch)
  }

  .cat[data-cat="event"] {
      --c: var(--cat-event)
  }

  .cat[data-cat="company"] {
      --c: var(--cat-company)
  }

  .post-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 22px 22px 26px;
      flex: 1
  }

  .post-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .08em;
      color: var(--muted)
  }

  .post-meta time {
      color: var(--gold)
  }

  .post-meta .cat-name {
      color: var(--muted)
  }

  .post-title {
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(16px, 1.5vw, 18.5px);
      line-height: 1.55;
      color: var(--ink)
  }

  .post-card:hover .post-title {
      color: var(--gold-bright)
  }

  .post-excerpt {
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.9;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
  }

  .read {
      margin-top: auto;
      padding-top: 6px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 8px
  }

  .read .arr {
      transition: transform .25s
  }

  .post-card:hover .read .arr {
      transform: translateX(4px)
  }

  /* featured (first) post spans wide — optional, WP: first item in loop */
  .post-card.feature {
      grid-column: span 3;
      flex-direction: row
  }

  .post-card.feature .thumb {
      aspect-ratio: auto;
      width: 52%;
      border-bottom: none;
      border-right: 1px solid var(--hair)
  }

  .post-card.feature .post-body {
      width: 48%;
      justify-content: center;
      padding: clamp(28px, 3vw, 48px)
  }

  .post-card.feature .post-title {
      font-size: clamp(20px, 2.2vw, 28px)
  }

  .post-card.feature .post-excerpt {
      -webkit-line-clamp: 3;
      font-size: 14.5px
  }

  /* ============ pagination (WP: paginate_links) ============ */
  .pager {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 64px
  }

  .pager a,
  .pager span {
      min-width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 13px;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 6px;
      text-decoration: none;
      transition: color .2s, border-color .2s, background .2s
  }

  .pager a:hover {
      color: var(--ink);
      border-color: var(--gold)
  }

  .pager .current {
      color: var(--space-900);
      background: var(--gold);
      border-color: var(--gold)
  }

  .pager .dots {
      border: none
  }

  .pager .nav {
      padding: 0 16px;
      letter-spacing: .1em
  }

  /* ============ subscribe strip ============ */
  section {
      padding: clamp(74px, 10vw, 100px) 0;
  }

  .subscribe {
      border-top: 1px solid var(--line);
      background: radial-gradient(90% 160% at 78% 50%, rgba(201, 146, 10, .10), transparent 60%), var(--space-900)
  }

  .subscribe .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap
  }

  .subscribe h2 {
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(22px, 2.6vw, 30px);
      line-height: 1.5
  }

  .subscribe p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 8px
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      font-weight: 500;
      font-size: 15px;
      color: var(--space-900);
      background: var(--gold);
      padding: 14px 28px;
      border-radius: 999px;
      text-decoration: none;
      transition: transform .25s, box-shadow .25s, background .25s
  }

  .btn:hover,
  .btn:focus-visible {
      transform: translateY(-2px);
      background: var(--gold-bright);
      box-shadow: 0 10px 30px -8px rgba(231, 196, 92, .55)
  }

  .btn .arr {
      transition: transform .25s
  }

  .btn:hover .arr {
      transform: translateX(4px)
  }

  .btn:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 3px
  }

  .top-link {
      text-decoration: none;
      color: var(--muted);
      transition: color .25s
  }

  .top-link:hover {
      color: var(--gold)
  }

  /* ============ responsive ============ */
  @media (max-width:960px) {
      .banner-photo img {
          object-position: center 42%
      }

      .post-grid {
          grid-template-columns: repeat(2, 1fr)
      }

      .post-card.feature {
          grid-column: span 2
      }
  }

  @media (max-width:1080px) {
      .foot-grid {
          grid-template-columns: 1fr 1fr;
          gap: 44px 32px
      }
  }

  @media (max-width:640px) {
      .post-grid {
          grid-template-columns: 1fr
      }

      .post-card.feature {
          grid-column: span 1;
          flex-direction: column
      }

      .post-card.feature .thumb {
          width: 100%;
          aspect-ratio: 16/10;
          border-right: none;
          border-bottom: 1px solid var(--hair)
      }

      .post-card.feature .post-body {
          width: 100%
      }

      .banner {
          padding: 140px 0 48px
      }

      .foot-grid {
          grid-template-columns: 1fr;
          gap: 36px
      }

      .subscribe .wrap {
          flex-direction: column;
          align-items: flex-start
      }
  }

  @media (prefers-reduced-motion:reduce) {

      .sat,
      .foot-bottom .dot,
      .thumb img {
          animation: none !important;
          transition: none !important
      }
  }

  /* ================================================
     SINGLE POST (single.php)
     ================================================ */
  :root {
      --cat-press: #E7C45C;
      --cat-dev: #6FB6E8;
      --cat-launch: #E0796B;
      --cat-event: #A98BE0;
      --cat-company: #5BE29A;
      --read: 820px;
  }

  /* ---- article header ---- */
  .single-head {
      position: relative;
      overflow: hidden;
      margin-top: 64px;
      padding: clamp(52px, 7vw, 88px) 0 clamp(34px, 4vw, 48px);
      border-bottom: 1px solid var(--hair);
      background:
          radial-gradient(120% 150% at 50% -40%, #0D1426 0%, var(--space-900) 62%),
          linear-gradient(180deg, #06080F 0%, #04050C 100%);
  }

  .single-head-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .5;
      background-image:
          linear-gradient(var(--hair) 1px, transparent 1px),
          linear-gradient(90deg, var(--hair) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(90% 120% at 50% 0%, #000 10%, transparent 72%);
      -webkit-mask-image: radial-gradient(90% 120% at 50% 0%, #000 10%, transparent 72%);
  }

  .single-head::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      width: min(560px, 70%);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .5;
  }

  .single-head .wrap,
  .single-body .wrap,
  .post-nav .wrap {
      position: relative;
      z-index: 1;
      max-width: calc(var(--read) + var(--gutter) * 2);
  }

  .single-head .crumbs {
      margin-bottom: 26px
  }

  /* category tag in the header (static counterpart of .cat) */
  .tag {
      display: inline-flex;
      align-items: center;
      font-family: var(--mono);
      font-size: 10.5px;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      color: var(--ink);
      text-decoration: none;
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--line);
      transition: border-color .2s, background .2s
  }

  .tag:hover,
  .tag:focus-visible {
      border-color: var(--gold);
      background: rgba(231, 196, 92, .08)
  }

  .tag .d {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-right: 8px;
      background: var(--c, var(--gold))
  }

  .tag[data-cat="press"] {
      --c: var(--cat-press)
  }

  .tag[data-cat="dev"] {
      --c: var(--cat-dev)
  }

  .tag[data-cat="launch"] {
      --c: var(--cat-launch)
  }

  .tag[data-cat="event"] {
      --c: var(--cat-event)
  }

  .tag[data-cat="company"] {
      --c: var(--cat-company)
  }

  .single-title {
      margin-top: 20px;
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(26px, 3.6vw, 42px);
      line-height: 1.5;
      letter-spacing: .02em;
      color: var(--ink)
  }

  .single-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .1em;
      color: var(--muted)
  }

  .single-meta time {
      color: var(--gold)
  }

  .single-meta .sep {
      width: 14px;
      height: 1px;
      background: var(--line)
  }

  /* ---- featured image ---- */
  .single-hero {
      margin-top: clamp(-40px, -3vw, -24px);
      position: relative;
      z-index: 2
  }

  .single-hero .wrap {
      max-width: calc(1080px + var(--gutter) * 2)
  }

  .single-hero img {
      width: 100%;
      height: auto;
      max-height: 62vh;
      object-fit: cover;
      border: 1px solid var(--hair);
      border-radius: 8px;
      box-shadow: 0 32px 70px -40px rgba(0, 0, 0, .95)
  }

  /* ---- article body ---- */
  .single-body {
      padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px)
  }

  .entry-body {
      font-size: 15.5px;
      line-height: 2.1;
      color: rgba(243, 239, 228, .84);
      letter-spacing: .02em
  }

  .entry-body>*+* {
      margin-top: 1.7em
  }

  .entry-body h2 {
      position: relative;
      margin-top: 2.4em;
      padding-left: 18px;
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(20px, 2.2vw, 26px);
      line-height: 1.6;
      color: var(--ink)
  }

  .entry-body h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: .25em;
      bottom: .25em;
      width: 3px;
      border-radius: 2px;
      background: linear-gradient(var(--gold), rgba(231, 196, 92, .15))
  }

  .entry-body h3 {
      margin-top: 2.1em;
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(17px, 1.8vw, 20px);
      line-height: 1.7;
      color: var(--ink)
  }

  .entry-body h4 {
      margin-top: 1.9em;
      font-size: 16px;
      font-weight: 600;
      color: var(--gold-bright)
  }

  .entry-body a {
      color: var(--gold-bright);
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
      transition: color .2s
  }

  .entry-body a:hover {
      color: var(--gold)
  }

  .entry-body strong {
      color: var(--ink);
      font-weight: 600
  }

  .entry-body ul,
  .entry-body ol {
      padding-left: 1.4em
  }

  .entry-body li+li {
      margin-top: .6em
  }

  .entry-body ul li::marker {
      color: var(--gold)
  }

  .entry-body ol li::marker {
      color: var(--gold);
      font-family: var(--mono);
      font-size: .9em
  }

  .entry-body blockquote {
      margin-left: 0;
      padding: 22px 26px;
      border-left: 2px solid var(--gold);
      border-radius: 0 6px 6px 0;
      background: rgba(255, 255, 255, .022);
      color: var(--muted);
      font-size: 14.5px
  }

  .entry-body blockquote cite {
      display: block;
      margin-top: 10px;
      font-family: var(--mono);
      font-size: 11.5px;
      font-style: normal;
      letter-spacing: .1em;
      color: var(--gold)
  }

  .entry-body img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      border: 1px solid var(--hair)
  }

  .entry-body figure {
      margin-left: 0;
      margin-right: 0
  }

  .entry-body figcaption {
      margin-top: 12px;
      font-size: 12.5px;
      line-height: 1.8;
      color: var(--muted);
      text-align: center
  }

  .entry-body hr {
      border: none;
      height: 1px;
      margin: 3em 0;
      background: linear-gradient(90deg, transparent, var(--line), transparent)
  }

  .entry-body code {
      font-family: var(--mono);
      font-size: .9em;
      padding: 2px 7px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .06);
      color: var(--gold-bright)
  }

  .entry-body pre {
      padding: 20px 22px;
      border: 1px solid var(--hair);
      border-radius: 6px;
      background: var(--space-800);
      overflow-x: auto
  }

  .entry-body pre code {
      padding: 0;
      background: none;
      color: var(--ink)
  }

  .entry-body table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px
  }

  .entry-body th,
  .entry-body td {
      padding: 14px 16px;
      border: 1px solid var(--hair);
      text-align: left
  }

  .entry-body th {
      background: rgba(255, 255, 255, .03);
      color: var(--ink);
      font-weight: 500
  }

  /* block editor alignment */
  .entry-body .aligncenter {
      margin-left: auto;
      margin-right: auto;
      text-align: center
  }

  .entry-body .alignwide,
  .entry-body .alignfull {
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      width: min(1080px, 100vw - var(--gutter) * 2);
      max-width: 100vw
  }

  .entry-body .alignfull {
      width: min(1400px, 100vw - var(--gutter) * 2)
  }

  .entry-body .wp-block-embed iframe,
  .entry-body iframe {
      width: 100%;
      aspect-ratio: 16/9;
      height: auto;
      border: 0;
      border-radius: 6px
  }

  /* ---- tags / share ---- */
  .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      list-style: none;
      margin-top: 48px;
      padding: 0
  }

  .post-tags a {
      display: inline-block;
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .06em;
      color: var(--muted);
      text-decoration: none;
      padding: 6px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      transition: color .2s, border-color .2s
  }

  .post-tags a:hover {
      color: var(--ink);
      border-color: var(--gold)
  }

  .share {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid var(--hair)
  }

  .share-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text);
      margin-right: 6px
  }

  .share-btn {
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .08em;
      color: var(--muted);
      text-decoration: none;
      padding: 8px 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      transition: color .2s, border-color .2s, background .2s
  }

  .share-btn:hover,
  .share-btn:focus-visible {
      color: var(--space-900);
      background: var(--gold);
      border-color: var(--gold)
  }

  /* ---- prev / index / next ---- */
  .post-nav {
      padding-bottom: clamp(56px, 7vw, 88px)
  }

  .post-nav .wrap {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: stretch;
      gap: 14px
  }

  .post-nav-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px 22px;
      border: 1px solid var(--hair);
      border-radius: 6px;
      text-decoration: none;
      background: rgba(255, 255, 255, .014);
      transition: border-color .3s, transform .3s
  }

  .post-nav-item:hover {
      border-color: var(--gold);
      transform: translateY(-3px)
  }

  .post-nav-item.is-empty {
      border-color: transparent;
      background: none;
      pointer-events: none
  }

  .post-nav-item .dir {
      font-family: var(--mono);
      font-size: 10.5px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold)
  }

  .post-nav-item .arr {
      display: inline-block;
      transition: transform .25s
  }

  .post-nav-item.is-prev:hover .arr {
      transform: translateX(-4px)
  }

  .post-nav-item.is-next:hover .arr {
      transform: translateX(4px)
  }

  .post-nav-item .ttl {
      font-family: var(--jp-serif);
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--ink);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
  }

  .post-nav-item.is-next {
      text-align: right
  }

  .post-nav-index {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      align-self: center;
      font-family: var(--mono);
      font-size: 11.5px;
      letter-spacing: .12em;
      color: var(--muted);
      text-decoration: none;
      padding: 12px 20px;
      border: 1px solid var(--line);
      border-radius: 999px;
      white-space: nowrap;
      transition: color .2s, border-color .2s
  }

  .post-nav-index .ico {
      width: 12px;
      height: 9px;
      background:
          linear-gradient(currentColor, currentColor) 0 0/100% 1px no-repeat,
          linear-gradient(currentColor, currentColor) 0 50%/100% 1px no-repeat,
          linear-gradient(currentColor, currentColor) 0 100%/100% 1px no-repeat
  }

  .post-nav-index:hover {
      color: var(--gold);
      border-color: var(--gold)
  }

  /* ---- related posts ---- */
  .related {
      border-top: 1px solid var(--hair);
      background: radial-gradient(100% 140% at 20% 0%, rgba(201, 146, 10, .06), transparent 60%)
  }

  .related-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px
  }

  .related-head h2 {
      font-family: var(--jp-serif);
      font-weight: 600;
      font-size: clamp(21px, 2.4vw, 28px);
      line-height: 1.4
  }

  .related-head .en {
      display: block;
      margin-top: 10px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold)
  }

  .related-head .top-link {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .1em
  }

  @media (max-width:760px) {
      .single-hero img {
          max-height: 42vh
      }

      .post-nav .wrap {
          grid-template-columns: 1fr
      }

      .post-nav-item.is-empty {
          display: none
      }

      .post-nav-item.is-next {
          text-align: left
      }

      .post-nav-index {
          order: 1;
          justify-content: center
      }
  }