.pq-news-page,
.pq-news-article {
  overflow: clip;
  background: var(--pqs-paper);
  color: var(--pqs-text);
}

.news-index-intro {
  padding: clamp(58px, 6vw, 88px) 0 clamp(54px, 5.5vw, 82px);
  background: var(--pqs-frost);
  border-bottom: 1px solid var(--pqs-border);
}

.news-index-intro--archive {
  --pqs-internal-hero-surface: var(--pqs-paper);
  background: var(--pqs-paper);
}

.news-index-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  align-items: end;
  gap: clamp(64px, 9vw, 150px);
}

.news-index-intro-note {
  padding-top: 24px;
}

.news-index-intro-note p {
  max-width: 520px;
  color: var(--pqs-text);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.news-index-intro-note a,
.news-read-link,
.news-index-bridge a,
.news-archive-return a,
.news-article-back,
.news-article-nav a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pqs-accent-deep);
  font-size: 15px;
  font-weight: 650;
}

.news-index-intro-note a {
  border-bottom: 1px solid rgba(58, 45, 82, .34);
}

.news-index-intro-note a span,
.news-read-link span,
.news-card-link i,
.news-index-bridge a span,
.news-archive-return a span,
.news-article-nav a span {
  transition: transform .22s var(--pqs-ease);
}

.news-index-intro-note a:hover span,
.news-read-link:hover span,
.news-card-link:hover i,
.news-index-bridge a:hover span,
.news-archive-return a:hover span,
.news-article-nav a:hover span {
  transform: translateX(4px);
}

.news-visual {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--pqs-stone-200);
  border-bottom: 1px solid var(--pqs-border);
}

.news-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.78) contrast(.96);
  transition: transform .46s var(--pqs-ease), filter .3s ease;
}

.news-visual:hover > img {
  filter: saturate(.95) contrast(1);
  transform: scale(1.018);
}

.news-visual-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--pqs-stone-200);
}

.news-visual-aperture,
.news-visual-aperture i {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(8deg);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}

.news-visual-aperture { width: min(64%, 420px); }
.news-visual-aperture i { border: 1px solid rgba(90, 74, 107, .16); background: rgba(90, 74, 107, .04); }
.news-visual-aperture i:nth-child(1) { width: 100%; }
.news-visual-aperture i:nth-child(2) { width: 73%; transform: translate(-50%, -50%) rotate(-4deg); }
.news-visual-aperture i:nth-child(3) { width: 47%; transform: translate(-50%, -50%) rotate(5deg); }
.news-visual-aperture i:nth-child(4) { width: 22%; transform: translate(-50%, -50%) rotate(-3deg); }

.news-visual-label {
  position: relative;
  z-index: 2;
  color: rgba(23, 20, 28, .62);
  font-size: 13px;
  font-weight: 650;
}

.news-lead {
  padding: clamp(62px, 6.5vw, 92px) 0 clamp(68px, 7vw, 104px);
}

.news-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: stretch;
  border-top: 1px solid var(--pqs-border-strong);
  border-bottom: 1px solid var(--pqs-border-strong);
}

.news-lead-visual {
  grid-column: 1;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  border-right: 1px solid var(--pqs-border-strong);
  border-bottom: 0;
}

/* Featured news artwork often contains logos and type that should never be cropped. */
.news-lead-visual.news-visual {
  background: #f5f4f2;
}

.news-lead-visual.news-visual > img {
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 2vw, 32px);
  box-sizing: border-box;
  filter: saturate(.94) contrast(.99);
}

.news-lead-visual.news-visual:hover > img {
  transform: scale(1.006);
  filter: saturate(1) contrast(1);
}

.news-lead-copy {
  grid-column: 2;
  min-width: 0;
  padding: clamp(34px, 3.8vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--pqs-frost);
}

.news-story-meta {
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--pqs-muted);
  font-size: 13px;
}

.news-story-meta span {
  color: var(--pqs-ink);
  font-weight: 650;
}

.news-story-meta time {
  padding-left: 22px;
  border-left: 1px solid var(--pqs-border-strong);
}

.news-lead-copy h2 {
  color: var(--pqs-ink);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.04;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.news-lead-copy h2 a,
.news-story-card h3 a,
.news-archive-row h3 a {
  color: inherit;
}

.news-lead-copy h2 a:hover,
.news-story-card h3 a:hover,
.news-archive-row h3 a:hover {
  color: var(--pqs-accent-deep);
}

.news-lead-excerpt {
  max-width: 58ch;
  margin: 20px 0 26px;
  color: var(--pqs-muted);
  font-size: 15px;
  line-height: 1.68;
}

.news-read-link {
  border-bottom: 1px solid rgba(58, 45, 82, .34);
}

.news-current-list {
  padding: clamp(66px, 7vw, 98px) 0 clamp(78px, 8vw, 116px);
  background: var(--pqs-frost);
  border-top: 1px solid var(--pqs-border);
}

.news-section-heading {
  margin-bottom: clamp(34px, 4vw, 52px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 54px;
}

.news-section-heading h2 {
  max-width: 760px;
  color: var(--pqs-ink);
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .99;
}

.news-index-bridge h2,
.news-archive-layout > header h2 {
  max-width: 760px;
  color: var(--pqs-ink);
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .99;
}

.news-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px) clamp(22px, 2.4vw, 34px);
}

.news-story-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-card-visual {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--pqs-border);
}

.news-story-card-copy {
  flex: 1;
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
}

.news-story-card time,
.news-archive-row time,
.news-article-hero time {
  color: var(--pqs-muted);
  font-size: 13px;
  font-feature-settings: "tnum";
}

.news-story-card h3 {
  margin-top: 14px;
  color: var(--pqs-ink);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.news-card-link {
  min-height: 52px;
  margin-top: 24px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--pqs-border);
  color: var(--pqs-accent-deep);
  font-size: 14px;
  font-weight: 650;
}

.news-card-link i {
  font-size: 18px;
  font-style: normal;
}

.news-empty {
  padding: 54px;
  background: var(--pqs-paper);
  border: 1px solid var(--pqs-border);
}

.news-empty h3 {
  color: var(--pqs-ink);
  font-size: 28px;
  font-weight: 600;
}

.news-empty p {
  margin-top: 12px;
  color: var(--pqs-muted);
  line-height: 1.65;
}

.news-pagination,
.news-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-pagination {
  margin-top: clamp(54px, 7vw, 92px);
  gap: 8px;
}

.news-pagination .page-numbers {
  min-width: 44px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--pqs-border-strong);
  color: var(--pqs-text);
  font-size: 14px;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  background: var(--pqs-deep-surface);
  border-color: var(--pqs-deep-surface);
  color: var(--pqs-frost);
}

.news-index-bridge {
  padding: clamp(68px, 7vw, 100px) 0;
  background: var(--pqs-deep-surface);
  color: var(--pqs-frost);
}

.news-index-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  align-items: end;
  gap: clamp(58px, 9vw, 150px);
}

.news-index-bridge h2 {
  color: var(--pqs-frost);
}

.news-index-bridge a {
  color: var(--pqs-frost);
  border-bottom: 1px solid rgba(245, 244, 241, .36);
}

.news-archive-list {
  padding: clamp(88px, 9vw, 138px) 0;
  background: var(--pqs-frost);
  border-top: 1px solid var(--pqs-border);
  border-bottom: 1px solid var(--pqs-border);
}

.news-archive-layout {
  display: grid;
  grid-template-columns: minmax(230px, .52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(56px, 8vw, 132px);
}

.news-archive-layout > header {
  position: sticky;
  top: calc(var(--pqs-header-h) + 34px);
}

.news-archive-rows {
  border-top: 1px solid var(--pqs-border-strong);
}

.news-archive-row {
  min-width: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  border-bottom: 1px solid var(--pqs-border-strong);
}

.news-archive-visual {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--pqs-border);
}

.news-archive-visual > img {
  padding: 12px;
  object-fit: contain;
  box-sizing: border-box;
  filter: grayscale(.28) saturate(.72);
}

.news-archive-row h3 {
  margin-top: 10px;
  color: var(--pqs-ink);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.news-archive-row-copy p {
  max-width: 64ch;
  margin-top: 12px;
  color: var(--pqs-muted);
  font-size: 14px;
  line-height: 1.62;
}

.news-archive-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pqs-border-strong);
  color: var(--pqs-accent-deep);
  font-size: 18px;
  transition: background-color .2s ease, color .2s ease, transform .22s var(--pqs-ease);
}

.news-archive-arrow:hover {
  background: var(--pqs-deep-surface);
  color: var(--pqs-frost);
  transform: translateX(4px);
}

.news-archive-return {
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--pqs-paper);
}

.news-archive-return .pq-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.news-archive-return p {
  color: var(--pqs-muted);
  font-size: 16px;
}

.news-article-hero {
  position: relative;
  overflow: clip;
  padding: clamp(76px, 8vw, 118px) 0 clamp(72px, 8vw, 112px);
  background: var(--pqs-frost);
  border-bottom: 1px solid var(--pqs-border);
}

.news-article-hero::after {
  content: "";
  position: absolute;
  top: 30px;
  right: max(24px, calc((100vw - var(--pqs-shell)) / 2 + var(--pqs-shell-gutter)));
  width: 52px;
  aspect-ratio: 1;
  background: url("assets/motifs/internal-header-aperture.svg") center / contain no-repeat;
  pointer-events: none;
}

.pq-news-article.is-archived .news-article-hero {
  background: var(--pqs-paper);
}

.news-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
  align-items: start;
  gap: 44px clamp(54px, 8vw, 132px);
}

.news-article-hero h1 {
  max-width: 1080px;
  color: var(--pqs-ink);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: .98;
  text-wrap: balance;
}

.news-article-back {
  grid-column: 2;
  border-bottom: 1px solid rgba(58, 45, 82, .34);
}

.news-article-featured {
  margin: 0;
  padding: clamp(62px, 7vw, 96px) 0 0;
}

.news-article-featured img {
  width: 100%;
  max-height: min(68vh, 820px);
  padding: clamp(22px, 3vw, 44px);
  display: block;
  object-fit: contain;
  background: var(--pqs-frost);
  border: 1px solid var(--pqs-border);
  box-sizing: border-box;
}

.news-article-body {
  padding: clamp(74px, 8vw, 118px) 0 clamp(94px, 10vw, 150px);
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, .3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(54px, 8vw, 132px);
}

.news-article-layout aside {
  padding-top: 20px;
  border-top: 1px solid var(--pqs-border-strong);
}

.news-article-layout aside p {
  color: var(--pqs-muted);
  font-size: 13px;
  line-height: 1.65;
}

.news-article-content {
  width: min(100%, 780px);
}

.news-article-content > * + * {
  margin-top: 1.2em;
}

.news-article-content p,
.news-article-content li {
  color: var(--pqs-text);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.76;
}

.news-article-content h2,
.news-article-content h3,
.news-article-content h4 {
  margin-top: 1.8em;
  color: var(--pqs-ink);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.news-article-content h2 { font-size: clamp(34px, 3.5vw, 52px); }
.news-article-content h3 { font-size: clamp(27px, 2.5vw, 36px); }
.news-article-content ul,
.news-article-content ol { padding-left: 1.35em; }
.news-article-content a { color: var(--pqs-accent-deep); text-decoration: underline; text-underline-offset: .2em; }
.news-article-content blockquote { margin: 2em 0; padding: 26px 0 26px 32px; border-left: 1px solid var(--pqs-border-strong); }
.news-article-content img { max-width: 100%; height: auto; }
.news-article-content figcaption { margin-top: 10px; color: var(--pqs-muted); font-size: 13px; line-height: 1.5; }

.news-article-nav {
  padding: 38px 0;
  background: var(--pqs-frost);
  border-top: 1px solid var(--pqs-border);
}

.news-article-nav-inner {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .news-index-intro-grid,
  .news-index-bridge-grid { gap: 58px; }
  .news-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-archive-row { grid-template-columns: 140px minmax(0, 1fr) 48px; }
}

@media (max-width: 1100px) {
  .news-lead-grid { grid-template-columns: 1fr; }
  .news-lead-grid { border-top: 0; }
  .news-lead-visual { grid-column: auto; height: auto; min-height: 0; aspect-ratio: 16 / 9; border: 1px solid var(--pqs-border-strong); }
  .news-lead-copy { grid-column: auto; border: 1px solid var(--pqs-border-strong); border-top: 0; }
}

@media (max-width: 760px) {
  .news-index-intro-grid,
  .news-index-bridge-grid,
  .news-archive-layout,
  .news-article-hero-grid,
  .news-article-layout {
    grid-template-columns: 1fr;
  }

  .news-index-intro-grid,
  .news-index-bridge-grid { gap: 46px; }
  .news-section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .news-archive-layout { gap: 52px; }
  .news-archive-layout > header { position: static; }
  .news-archive-row { grid-template-columns: 112px minmax(0, 1fr) 44px; gap: 20px; }
  .news-archive-row-copy p { display: none; }
  .news-archive-return .pq-shell { align-items: flex-start; flex-direction: column; }
  .news-article-hero-grid { gap: 28px; }
  .news-article-back { grid-column: auto; }
  .news-article-layout { gap: 48px; }
  .news-article-layout aside { max-width: 420px; }
}

@media (max-width: 680px) {
  .news-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .news-article-hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .news-article-hero::after { top: 20px; width: 42px; }
  .news-lead-copy { padding: 32px 24px; }
  .news-story-card-copy { padding: 20px 0 0; }
  .news-archive-row { grid-template-columns: 84px minmax(0, 1fr); }
  .news-archive-arrow { display: none; }
  .news-archive-row h3 { font-size: 21px; }
  .news-empty { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-visual > img,
  .news-index-intro-note a span,
  .news-read-link span,
  .news-card-link i,
  .news-index-bridge a span,
  .news-archive-return a span,
  .news-article-nav a span,
  .news-archive-arrow {
    transition: none;
  }

  .news-visual:hover > img,
  .news-archive-arrow:hover {
    transform: none;
  }
}

.news-index-intro a:focus-visible,
.news-lead a:focus-visible,
.news-story-card a:focus-visible,
.news-archive-row a:focus-visible,
.news-index-bridge a:focus-visible,
.news-archive-return a:focus-visible,
.news-article-hero a:focus-visible,
.news-article-content a:focus-visible,
.news-article-nav a:focus-visible {
  outline: 2px solid var(--pqs-focus);
  outline-offset: 4px;
}
