/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	center positioning
=======================================*/
/*=======================================
	fluid responsive sizing
/* PC */
/* TB */
/* SP */
/*=======================================
	browser-specific helpers
=======================================*/
/* Safari */
/* Firefox */
/*!
 * ERRAI CORPORATION - news.css
 * Source: news/index.html
 * Auto-extracted from inline <style>; manual additions below.
 */
/* ========================================================================
	 ERRAI CORPORATION - NEWS
	 Same design language as errai-corporation / about / application / etc.
	 News archive page, structured for future WordPress port.
	 ======================================================================== */
:root {
  --void:	#04060c;
  --abyss: #070b16;
  --midnight:	#0b1124;
  --navy:	#111935;
  --steel: #1a2447;
  --glass: rgba(255,255,255,0.04);
  --glass-bd:	rgba(255,255,255,0.08);
  --glass-bd-2:	rgba(255,255,255,0.12);
  --gamma: #6ea8ff;
  --gamma-deep:	#3b6fd6;
  --photon:	#aac6ff;
  --plasma:	#b48bff;
  --gold:	#d9c08a;
  --ember: #ff7a59;
  --ink: #f4f6fb;
  --ink-2: #c8cfdd;
  --ink-3: #8c95a8;
  --ink-4: #5b6478;
  --rule:	rgba(255,255,255,0.07);
  --rule-2:	rgba(255,255,255,0.12);
  --font-display: "Manrope", "Noto Sans JP", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-mono:	"JetBrains Mono", ui-monospace, monospace;
  --font-jp:	"Noto Sans JP", system-ui, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.32,1);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--abyss);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(1200px 600px at 80% -10%, rgba(110, 168, 255, 0.08), transparent 70%), radial-gradient(900px 700px at -10% 60%, rgba(180, 139, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../img/noise.svg");
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

main, header, footer, section {
  position: relative;
  z-index: 3;
}

a[aria-disabled=true] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========== NEWS PAGE -HERO ========== */
.news-page .page-hero {
  min-height: 44vh;
  padding: 150px var(--gutter) 80px;
}

.page-hero__eyebrow::before {
  width: 24px;
  background-color: var(--ink-4);
}

.page-hero__title {
  font-weight: 300;
  font-size: clamp(44px, 7.5vw, 92px);
  letter-spacing: 0.01em;
}

.page-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--photon);
}

.page-hero__sub {
  margin-top: 20px;
  font-size: 13.5px;
  letter-spacing: 0.26em;
}

.page-hero__lead {
  margin-top: 28px;
  max-width: 640px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

.page-hero__readout {
  bottom: 24px;
}

@media (max-width: 700px) {
  .news-page .page-hero {
    padding: 130px 20px 70px;
    min-height: 50vh;
  }
  .page-hero__lead {
    max-width: 350px;
  }
  .page-hero__readout {
    margin-top: 30px;
  }
}
/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 22px var(--gutter) 0;
}

.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--ink-3);
  -webkit-transition: color 0.3s var(--ease);
  transition: color 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--gamma);
}

.breadcrumb .sep {
  color: var(--ink-4);
}

.breadcrumb .current {
  color: var(--ink);
  border-bottom: 1px solid var(--gamma);
  padding-bottom: 3px;
}

/* ========== SECTION ========== */
.section {
  padding: var(--section-y) var(--gutter);
  position: relative;
  scroll-margin-top: 84px;
}

.section--tight {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ========== NEWS -TIME SERIES LIST ========== */
/* The list is the page's centerpiece. Single column, generous breathing room,
	 thin rules between items, equal weight for every entry. */
.news-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-index__head {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--ink-4);
  text-transform: uppercase;
  padding: 0 4px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.news-index__head .total {
  color: var(--gamma);
}

.news-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 18px 4px 14px;
  border-bottom: 1px solid var(--rule-2);
}

.news-tab {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 8px 12px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  -webkit-transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.news-tab:hover {
  color: var(--ink);
}

.news-tab.active,
.news-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--gamma);
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Each news article -clean horizontal row */
.news-item {
  display: grid;
  grid-template-columns: 130px 280px 1fr;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 32px 4px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  scroll-margin-top: 120px;
  -webkit-transition: background 0.28s var(--ease);
  transition: background 0.28s var(--ease);
}

/* For items without an image, the grid collapses to 2 columns */
.news-item--no-image {
  grid-template-columns: 130px 1fr;
}

/* ---- DATE ---- */
.news-item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.news-item__time {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.news-item__time .y {
  color: var(--gamma);
  font-size: 11.5px;
  letter-spacing: 0.18em;
}

.news-item__time .md {
  color: var(--ink);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.news-item__new {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  color: var(--gamma);
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(110, 168, 255, 0.55);
  background: rgba(110, 168, 255, 0.06);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}

.news-item__new::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gamma);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 6px var(--gamma);
          box-shadow: 0 0 6px var(--gamma);
}

.news-item__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--photon);
  padding: 5px 10px;
  border: 1px solid rgba(170, 198, 255, 0.25);
  background: rgba(170, 198, 255, 0.05);
}

.news-item__cat.event {
  color: var(--gold);
  border-color: rgba(217, 192, 138, 0.3);
  background: rgba(217, 192, 138, 0.05);
}

.news-item__cat.notice {
  color: var(--photon);
  border-color: rgba(170, 198, 255, 0.25);
  background: rgba(170, 198, 255, 0.05);
}

/* ---- IMAGE ---- */
.news-item__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--midnight), var(--abyss));
  border: 1px solid var(--rule-2);
  overflow: hidden;
  position: relative;
  -ms-flex-item-align: start;
      align-self: start;
  -webkit-transition: border-color 0.3s var(--ease);
  transition: border-color 0.3s var(--ease);
}

.news-item__image img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Variant -cover (people, group photos, ceremony shots) */
.news-item__image--cover img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-item__image--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), to(rgba(7, 11, 22, 0.3)));
  background: linear-gradient(180deg, transparent 65%, rgba(7, 11, 22, 0.3) 100%);
  pointer-events: none;
}

/* Variant -contain (logos, tables, white-background graphics) */
.news-item__image--contain {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6fb), to(#e2e7f0));
  background: linear-gradient(180deg, #f4f6fb 0%, #e2e7f0 100%);
  padding: 14px;
}

.news-item__image--contain img {
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
}

/* Variant -dark (images that are already on a cosmic / dark background) */
.news-item__image--dark {
  background: var(--abyss);
}

.news-item__image--dark img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ---- BODY ---- */
.news-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding-top: 2px;
}

.news-item__title {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  letter-spacing: 0.025em;
  margin: 0;
}

.news-item__link {
  display: inline;
  color: var(--ink);
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.35s var(--ease), color 0.25s var(--ease);
  transition: background-size 0.35s var(--ease), color 0.25s var(--ease);
  padding-bottom: 2px;
}

.news-item__link:hover {
  color: var(--photon);
  background-size: 100% 1px;
}

.news-item__link--nolink {
  background-image: none;
  cursor: default;
}

.news-item__link--nolink:hover {
  color: var(--ink);
  background-size: 0% 1px;
}

.news-item__title-text {
  /* Title text is wrapped in this span so the icon can sit beside it cleanly */
}

.news-item__ext-icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 6px;
  vertical-align: middle;
  stroke: var(--ink-3);
  stroke-width: 1.4;
  fill: none;
  -webkit-transition: stroke 0.25s var(--ease), -webkit-transform 0.25s var(--ease);
  transition: stroke 0.25s var(--ease), -webkit-transform 0.25s var(--ease);
  transition: stroke 0.25s var(--ease), transform 0.25s var(--ease);
  transition: stroke 0.25s var(--ease), transform 0.25s var(--ease), -webkit-transform 0.25s var(--ease);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-item__link:hover .news-item__ext-icon {
  stroke: var(--photon);
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}

/* Related links -small sub-links under title */
.news-item__related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.news-item__related-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.news-item__related-link {
  font-family: var(--font-jp);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--gamma);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  -webkit-transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.news-item__related-link:hover {
  color: var(--photon);
  border-bottom-color: var(--gamma);
}

.news-item__related-link .news-item__ext-icon {
  stroke: currentColor;
  width: 10px;
  height: 10px;
}

.news-item__arrow {
  display: inline-block;
  margin-left: 6px;
  line-height: 1;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: -webkit-transform 0.25s var(--ease);
  transition: -webkit-transform 0.25s var(--ease);
  transition: transform 0.25s var(--ease);
  transition: transform 0.25s var(--ease), -webkit-transform 0.25s var(--ease);
}

.news-item__related-link:hover .news-item__arrow {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

/* ========== MOBILE ========== */
@media (max-width: 860px) {
  .news-index__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
  }
  .news-filter {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .news-tab {
    white-space: nowrap;
  }
  .news-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 4px;
    scroll-margin-top: 96px;
  }
  .news-item--no-image {
    grid-template-columns: 1fr;
  }
  .news-item__date {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .news-item__time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 8px;
  }
  .news-item__time .y {
    font-size: 11px;
  }
  .news-item__time .md {
    font-size: 15px;
  }
  .news-item__image {
    aspect-ratio: 16/9;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .news-item__image--cover {
    aspect-ratio: auto;
  }
  .news-item__image--cover img {
    height: auto;
  }
  .news-item__image--cover img,
  .news-item__image--dark img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .news-item__title {
    font-size: 14.5px;
    line-height: 1.7;
  }
}
.news-pagination {
  display: none;
}

/* ========== Final CTA ========== */
.cta {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(110, 168, 255, 0.07), transparent 70%), var(--abyss);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 18px;
}

.cta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--photon);
  font-weight: 300;
}

.cta__lead {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta__actions .btn-line {
  padding: 14px 26px;
  font-size: 11.5px;
}

/* ========== FOOTER (shared) ========== */
.site-footer {
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
  background: var(--void);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.26em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand .ja {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.footer-brand .addr {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-3);
}

.footer-brand .addr a {
  color: var(--photon);
  border-bottom: 1px solid var(--rule-2);
  -webkit-transition: border-color 0.3s var(--ease);
  transition: border-color 0.3s var(--ease);
}

.footer-brand .addr a:hover {
  border-color: var(--gamma);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gamma);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  -webkit-transition: color 0.3s var(--ease);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--photon);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.footer-bottom .legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer-bottom .legal a {
  color: var(--ink-3);
}

.footer-bottom .legal a:hover {
  color: var(--gamma);
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
/* ========== News Pagination ========== */
.news-pagination {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--rule);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 0.8vw, 10px);
  list-style: none;
  padding: 0;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-pagination__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.news-pagination__link,
.news-pagination__current,
.news-pagination__dots {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.015);
  -webkit-transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.news-pagination__link:hover {
  color: var(--photon);
  border-color: var(--gamma);
  background: rgba(110, 168, 255, 0.06);
}

.news-pagination__current {
  color: var(--abyss);
  background: var(--gamma);
  border-color: var(--gamma);
  font-weight: 700;
  pointer-events: none;
}

.news-pagination__dots {
  border: 0;
  background: transparent;
  color: var(--ink-4);
  letter-spacing: 0.25em;
}

.news-pagination__prev,
.news-pagination__next {
  min-width: auto;
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
}

.news-pagination__prev[aria-disabled=true],
.news-pagination__next[aria-disabled=true] {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 560px) {
  .news-pagination__link,
  .news-pagination__current,
  .news-pagination__dots {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 11.5px;
  }
  .news-pagination__prev,
  .news-pagination__next {
    padding: 0 12px;
    font-size: 10.5px;
  }
}
/* ========== Reveal animation ========== */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), -webkit-transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.reveal.delay-1 {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.reveal.delay-2 {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}

.reveal.delay-3 {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

::-moz-selection {
  background: var(--gamma);
  color: var(--abyss);
}

::selection {
  background: var(--gamma);
  color: var(--abyss);
}

/* === EN-only overrides (merged from en/news/index.html) === */
/* ========== EN overrides ========== */
html[lang=en] body,
html[lang=en] .news-item__title-text,
html[lang=en] .news-item__related-link,
html[lang=en] .section-lead,
html[lang=en] .section-label .jp,
html[lang=en] .page-hero__sub,
html[lang=en] .page-hero__lead,
html[lang=en] .cta__title,
html[lang=en] .cta__lead {
  font-family: var(--font-display);
}

html[lang=en] .news-item__title-text {
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* === Footer heading: a11y fix (h4 -> p.footer-col__heading) === */
.footer-col__heading {
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
}
/* === Unified footer display === */
.site-footer {
  background: var(--void);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand .ja {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .15em;
  margin-bottom: 24px;
}

.footer-brand .addr {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink-3);
  letter-spacing: .04em;
}

.footer-brand .addr a {
  color: var(--gamma);
  text-decoration: underline;
  text-decoration-color: rgba(110,168,255,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color .3s var(--ease), color .3s var(--ease);
}

.footer-brand .addr a:hover {
  color: var(--photon);
  text-decoration-color: var(--gamma);
}

.footer-col h4,
.footer-col__heading {
  margin: 0 0 18px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-col a {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}

.footer-col a:hover {
  color: var(--photon);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  color: var(--ink-4);
  text-transform: none;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom .legal a {
  color: var(--ink-3);
  transition: color .3s var(--ease);
}

.footer-bottom a:hover,
.footer-bottom .legal a:hover {
  color: var(--ink);
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/*# sourceMappingURL=news.css.map */
