.page-news {
  --news-orange: #FF6A00;
  --news-navy: #0A1D3C;
  --news-navy-deep: #07152B;
  --news-cream: #F5F0E8;
  --news-sand: #E8DCC8;
  --news-ink: #2B1D14;
  --news-silver: #C0C0C0;
  --news-blue-soft: #89A5D4;
  --news-transition: 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-x: hidden;
}

.page-news .wrap {
  width: min(1440px, 100% - clamp(20px, 4vw, 48px) * 2);
  margin-inline: auto;
}

.page-news .page-news__category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.page-news .page-news__date {
  font-family: "JetBrains Mono", "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(10, 29, 60, 0.6);
}

.page-news .page-news__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-news .page-news-hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 40px;
  background: var(--news-navy);
  overflow: hidden;
}

.page-news .page-news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(160px, 26vw, 420px);
  height: 100%;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 106, 0, 0.16) 48%, rgba(255, 106, 0, 0.16) 52%, transparent 52%),
    linear-gradient(45deg, transparent 60%, rgba(137, 165, 212, 0.12) 60%, rgba(137, 165, 212, 0.12) 62%, transparent 62%);
  background-size: 100% 100%, 48px 48px;
  pointer-events: none;
}

.page-news .page-news-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

.page-news .page-news-hero .kicker {
  color: var(--news-silver);
}

.page-news .page-news-hero .display-title {
  color: var(--news-cream);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 10em;
  margin: 18px 0 0;
  font-weight: 200;
}

.page-news .page-news-hero .display-sub {
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 32em;
  margin: 20px 0 0;
  font-weight: 400;
}

.page-news .page-news-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px;
  border-top: 1px solid rgba(192, 192, 192, 0.32);
  padding-top: 24px;
}

.page-news .page-news-hero__meta-item {
  margin: 0;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.86);
  padding-right: 20px;
  border-right: 1px solid rgba(192, 192, 192, 0.2);
  line-height: 1.6;
}

.page-news .page-news-hero__meta-item:last-child {
  border-right: 0;
}

.page-news .page-news-hero__meta-item .data-num {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--news-orange);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.page-news .section {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
}

.page-news .section-head {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.page-news .section-head--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}

.page-news .section-head .display-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--news-navy-deep);
}

.page-news .section-head .kicker {
  margin: 0;
}

.page-news .page-news__section-note {
  margin: 0;
  padding-left: 0;
  border-left: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(43, 29, 20, 0.62);
}

.page-news .page-news__section-note::before {
  content: "— ";
  color: var(--news-orange);
  font-family: "JetBrains Mono", monospace;
}

.page-news .page-news-pinned {
  background: var(--news-cream);
}

.page-news .page-news-pinned .page-news-pinned__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--news-white, #FFFFFF);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 8px 24px rgba(10, 29, 60, 0.08);
}

.page-news .page-news-pinned .section-head .display-title {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 16px;
}

.page-news .page-news-pinned__text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(43, 29, 20, 0.84);
  margin: 0 0 16px;
}

.page-news .page-news-pinned__text p:first-of-type {
  margin-top: 18px;
}

.page-news .page-news-pinned__text a {
  color: var(--news-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 106, 0, 0.35);
  transition: border-color var(--speed-fast, 180ms) ease;
}

.page-news .page-news-pinned__text a:hover {
  border-color: transparent;
}

.page-news .page-news-pinned__media {
  border-radius: 18px;
  overflow: hidden;
}

.page-news .media-16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--news-navy-deep), var(--news-navy));
}

.page-news .media-4x5 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--news-navy-deep), var(--news-navy));
}

.page-news .media-16x9 img,
.page-news .media-4x5 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .page-news-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px 20px;
  padding: clamp(24px, 3.5vw, 48px) 0;
  border-bottom: 1px solid rgba(10, 29, 60, 0.1);
  position: relative;
  transition: background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.page-news .page-news-item__index {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 200;
  font-family: "JetBrains Mono", "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  color: rgba(10, 29, 60, 0.22);
  line-height: 1;
  grid-column: 1;
  grid-row: 1;
  padding-top: 4px;
  transition: color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-item:hover .page-news-item__index {
  color: var(--news-orange);
}

.page-news .page-news-item__body {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.page-news .page-news-item__body h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--news-navy-deep);
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}

.page-news .page-news-item__excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(43, 29, 20, 0.76);
  margin: 0;
  max-width: 56em;
}

.page-news .page-news-item__media {
  display: none;
}

.page-news .page-news__more {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.page-news .page-news-feature {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(10, 29, 60, 0.06);
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 0.61, 0.36, 1), background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 29, 60, 0.14);
}

.page-news .page-news-feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--news-navy-deep);
  margin: 16px 0 12px;
  line-height: 1.4;
}

.page-news .page-news-feature p:last-child {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(43, 29, 20, 0.76);
  margin: 0;
}

.page-news .page-news-notice {
  background: var(--news-navy);
  overflow: hidden;
}

.page-news .page-news-notice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--news-orange);
}

.page-news .page-news-notice .section-head .kicker {
  color: var(--news-silver);
}

.page-news .page-news-notice .section-head .display-title {
  color: var(--news-cream);
}

.page-news .page-news-notice .section-head .display-sub {
  color: rgba(245, 240, 232, 0.72);
}

.page-news .page-news-notice .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-news .page-news-notice__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 16px;
  transition: background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-notice__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 106, 0, 0.38);
}

.page-news .page-news-notice__icon {
  font-size: 18px;
  color: var(--news-orange);
  line-height: 24px;
  text-align: center;
}

.page-news .page-news-notice__item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--news-cream);
  margin: 0 0 8px;
  line-height: 1.5;
}

.page-news .page-news-notice__item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
  margin: 0;
}

.page-news .speed-lines {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.page-news .speed-lines i {
  position: absolute;
  top: 0;
  display: block;
  width: 18%;
  height: 2px;
  background: var(--news-orange);
  opacity: 0.22;
  transform: rotate(-18deg);
  transform-origin: left center;
}

.page-news .speed-lines i:nth-child(1) {
  left: -3%;
  top: 80px;
}

.page-news .speed-lines i:nth-child(2) {
  left: 62%;
  top: 10px;
  width: 26%;
}

.page-news .speed-lines i:nth-child(3) {
  left: 28%;
  top: 108px;
  width: 14%;
}

.page-news .speed-lines--reverse i {
  transform: rotate(18deg);
  transform-origin: right center;
}

.page-news .page-news-archive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .page-news-archive__head .display-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--news-navy-deep);
}

.page-news .page-news-archive__head .kicker {
  margin: 0;
}

.page-news .page-news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .page-news-archive__list li {
  margin: 0;
}

.page-news .page-news-archive__list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 29, 60, 0.1);
  text-decoration: none;
  align-items: center;
  transition: padding-left 300ms cubic-bezier(0.22, 0.61, 0.36, 1), background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-archive__list a:hover {
  padding-left: 12px;
  background: rgba(255, 106, 0, 0.05);
}

.page-news .page-news-archive__list a .data-num {
  font-size: 32px;
  font-weight: 200;
  color: rgba(10, 29, 60, 0.28);
  font-family: "JetBrains Mono", monospace;
  transition: color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-news .page-news-archive__list a:hover .data-num {
  color: var(--news-orange);
}

.page-news .page-news-archive__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-news .page-news-archive__info strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--news-navy-deep);
  line-height: 1.5;
}

.page-news .page-news-archive__info em {
  font-style: normal;
  font-size: 13px;
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  color: rgba(43, 29, 20, 0.52);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .page-news .page-news-hero {
    padding: clamp(70px, 9vw, 140px) 0 56px;
  }

  .page-news .page-news-hero__inner {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 56px;
  }

  .page-news .page-news-hero__meta {
    border-top: 0;
    border-left: 1px solid rgba(192, 192, 192, 0.32);
    padding-top: 4px;
    padding-left: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-news .page-news-hero__meta-item {
    border-right: 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.16);
    padding-right: 0;
    padding-bottom: 14px;
  }

  .page-news .page-news-hero__meta-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .page-news .section-head--row {
    grid-template-columns: 1fr 260px;
    gap: 40px;
  }

  .page-news .page-news-pinned__card {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-news .page-news-item {
    grid-template-columns: 64px 1fr 320px;
    gap: 24px 32px;
    align-items: center;
  }

  .page-news .page-news-item__index {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(48px, 4vw, 64px);
  }

  .page-news .page-news-item__body {
    grid-column: 2;
    grid-row: 1;
  }

  .page-news .page-news-item__media {
    display: block;
    grid-column: 3;
    grid-row: 1;
    border-radius: 16px;
    overflow: hidden;
  }

  .page-news .page-news-item--reverse .page-news-item__index {
    grid-column: 3;
    grid-row: 1;
  }

  .page-news .page-news-item--reverse .page-news-item__body {
    grid-column: 2;
  }

  .page-news .page-news-item--reverse .page-news-item__media {
    grid-column: 1;
  }

  .page-news .page-news-notice .grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-news .page-news-archive {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .page-news .page-news-item {
    grid-template-columns: 80px 1fr 360px;
  }

  .page-news .page-news-item__body h3 {
    font-size: 26px;
  }

  .page-news .page-news-item__excerpt {
    font-size: 15px;
  }

  .page-news .page-news-feature {
    padding: 32px;
  }

  .page-news .page-news-notice__item {
    padding: 28px;
  }
}

.page-news {
  --news-white: transparent;
}
