/* Page styles: newslist.css */

/* News list */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 1.08em;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}

.newslist-page {
  background: #f6f5f0;
}

.newslist-page h1,
.newslist-page h2,
.newslist-page h3,
.newslist-page .display,
.newslist-page .section-label {
  font-family: 'Syne', sans-serif;
  letter-spacing: 0;
}

.newslist-page .display {
  font-size: 3.1rem;
  line-height: 1.05;
}

.newslist-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 56px) 0 58px;
  color: var(--ink-2);
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.94) 0%, rgba(7, 10, 18, 0.78) 52%, rgba(7, 10, 18, 0.54) 100%),
    url('../images/hero-news.jpg') center / cover no-repeat;
}

.newslist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

.newslist-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: 48px;
  min-height: 610px;
}

.newslist-hero-copy,
.newslist-feature-copy,
.newslist-visual-copy {
  min-width: 0;
}

.newslist-breadcrumb {
  justify-content: flex-start;
  margin-bottom: 42px;
}

.newslist-hero .section-label {
  margin-bottom: 18px;
  color: rgba(248, 248, 245, 0.56);
}

.newslist-hero .section-label::before {
  background: #8ba4d4;
}

.newslist-title {
  max-width: 860px;
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 4.85rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.newslist-hero-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(248, 248, 245, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.newslist-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.newslist-hero-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(248, 248, 245, 0.18);
  color: rgba(248, 248, 245, 0.86);
  background: rgba(248, 248, 245, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.newslist-hero-tags .material-symbols-rounded {
  color: #dbe7ff;
  font-size: 18px;
}

.newslist-hero-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 245, 0.18);
  border-radius: 6px;
  color: #fff;
  background: #0c111b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.newslist-hero-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.88);
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.newslist-hero-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.04) 0%, rgba(7, 10, 18, 0.82) 100%),
    linear-gradient(135deg, transparent 0%, rgba(30, 58, 138, 0.22) 100%);
  z-index: 1;
}

.newslist-hero-feature:hover img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.08) brightness(0.95);
}

.newslist-hero-feature-body {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.newslist-hero-feature-body span,
.newslist-side-kicker {
  display: block;
  margin-bottom: 10px;
  color: #dbe7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newslist-hero-feature-body strong {
  display: block;
  max-width: 420px;
  font-family: 'Syne', sans-serif;
  font-size: 1.72rem;
  line-height: 1.08;
}

.newslist-hero-feature-body p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(248, 248, 245, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.newslist-feature-section {
  padding: 84px 0;
  background: #fff;
}

.newslist-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

.newslist-feature-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 6px;
  background: #e8e8e2;
}

.newslist-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.newslist-feature-media:hover img {
  transform: scale(1.04);
}

.newslist-feature-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(9, 13, 22, 0.78);
  border: 1px solid rgba(248, 248, 245, 0.14);
  backdrop-filter: blur(12px);
}

.newslist-feature-media figcaption span {
  color: rgba(248, 248, 245, 0.58);
  font-size: 12px;
}

.newslist-feature-media figcaption strong {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.newslist-feature-copy {
  max-width: 720px;
}

.newslist-feature-copy .lead {
  max-width: 620px;
}

.newslist-feature-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin: 30px 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(14, 14, 14, 0.1);
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}

.newslist-feature-note .material-symbols-rounded {
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 20px;
}

.newslist-feature-note p {
  margin: 0;
  max-width: 610px;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.72;
}

.newslist-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid rgba(14, 14, 14, 0.1);
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}

.newslist-proof-strip div {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid rgba(14, 14, 14, 0.08);
}

.newslist-proof-strip div:last-child {
  border-right: 0;
}

.newslist-proof-strip .material-symbols-rounded {
  color: var(--blue);
  font-size: 22px;
}

.newslist-proof-strip strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
}

.newslist-directory-section {
  padding: 82px 0 92px;
}

.newslist-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.newslist-toolbar .display {
  max-width: 740px;
}

.newslist-toolbar-simple {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
}

.newslist-toolbar-simple p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-60);
  font-size: 14px;
  line-height: 1.7;
}

.newslist-topic-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.newslist-topic-strip a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--ink-60);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.newslist-topic-strip a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.newslist-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.newslist-side-panel {
  position: sticky;
  top: calc(var(--nav-height) + 18px);
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 6px;
  background: #fff;
}

.newslist-side-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink-80);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.newslist-side-panel a:hover {
  color: var(--blue-deep);
  background: var(--blue-mist);
  border-color: rgba(30, 58, 138, 0.12);
  transform: translateX(3px);
}

.newslist-side-panel .material-symbols-rounded {
  color: var(--blue);
  font-size: 18px;
}

.newslist-side-note {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 14, 14, 0.08);
}

.newslist-side-note strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.02rem;
}

.newslist-side-note p {
  margin: 8px 0 10px;
  color: var(--ink-60);
  font-size: 13px;
  line-height: 1.65;
}

.newslist-side-note a {
  min-height: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-weight: 700;
}

.newslist-side-note a:hover {
  background: transparent;
  transform: none;
}

.newslist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.newslist-grid-simple {
  gap: 22px;
}

.newslist-grid-simple .newslist-card-wide {
  grid-column: 1 / -1;
}

.newslist-grid-simple .newslist-card[data-news-no="1"] {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: minmax(320px, auto);
}

.newslist-card {
  display: grid;
  grid-template-rows: 220px minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.09);
  border-radius: 6px;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.newslist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 18px 44px rgba(14, 14, 14, 0.09);
}

.newslist-card-media {
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: #e7e5de;
}

.newslist-grid-simple .newslist-card[data-news-no="1"] .newslist-card-media {
  min-height: 320px;
}

.newslist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.newslist-card:hover .newslist-card-media img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.04);
}

.newslist-card-body {
  display: grid;
  grid-template-rows: auto auto minmax(58px, auto);
  gap: 12px;
  padding: 20px;
}

.newslist-grid-simple .newslist-card[data-news-no="1"] .newslist-card-body {
  align-content: center;
  padding: 28px;
}

.newslist-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-40);
  font-size: 11px;
  text-transform: uppercase;
}

.newslist-card-meta span + span::before {
  content: '/';
  margin-right: 8px;
  color: rgba(14, 14, 14, 0.22);
}

.newslist-card h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.newslist-grid-simple .newslist-card[data-news-no="1"] h3 {
  font-size: 1.9rem;
  line-height: 1.05;
}

.newslist-card h3 a {
  transition: color 0.2s ease;
}

.newslist-card h3 a:hover {
  color: var(--blue);
}

.newslist-card p {
  margin: 0;
  color: var(--ink-60);
  font-size: 13px;
  line-height: 1.62;
}

.newslist-grid-simple .newslist-card[data-news-no="1"] p {
  font-size: 14px;
}

.newslist-card-link {
  width: fit-content;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.newslist-card-link:hover {
  color: var(--blue-deep);
  transform: translateX(3px);
}

.newslist-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: minmax(320px, auto);
}

.newslist-card-wide .newslist-card-media {
  min-height: 320px;
}

.newslist-card-wide .newslist-card-body {
  align-content: center;
  padding: 28px;
}

.newslist-card-wide h3 {
  font-size: 1.9rem;
  line-height: 1.05;
}

.newslist-card-wide p {
  font-size: 14px;
}

.newslist-pagebar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink-60);
  font-size: 13px;
}

.newslist-pagebar a,
.newslist-pagebar b,
.newslist-pagebar span,
.newslist-pagebar select {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-60);
  font: inherit;
}

.newslist-pagebar b,
.newslist-pagebar a:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.newslist-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px dashed rgba(14, 14, 14, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-60);
  font-size: 14px;
  text-align: center;
}

.newslist-visual-band {
  padding: 84px 0;
}

.newslist-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
}

.newslist-visual-copy .display {
  max-width: 650px;
}

.newslist-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.newslist-mini-stats span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(248, 248, 245, 0.84);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: 999px;
  background: rgba(248, 248, 245, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.newslist-image-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.newslist-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 245, 0.12);
  border-radius: 6px;
}

.newslist-image-stack img:first-child {
  grid-row: span 2;
}

.newslist-cta-section {
  padding: 76px 0;
  background: #fff;
}

.newslist-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  color: #fff;
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(9, 13, 22, 0.94) 0%, rgba(22, 45, 110, 0.92) 100%),
    url('../images/news-audit.jpg') center / cover no-repeat;
}

.newslist-cta-panel .section-label {
  margin-bottom: 12px;
  color: rgba(248, 248, 245, 0.62);
}

.newslist-cta-panel .section-label::before {
  background: #8ba4d4;
}

.newslist-cta-panel .display {
  font-size: 2.4rem;
}

.newslist-cta-panel p {
  margin: 0;
  color: rgba(248, 248, 245, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .newslist-hero-grid,
  .newslist-feature-grid,
  .newslist-visual-grid {
    grid-template-columns: 1fr;
  }

  .newslist-hero-grid {
    min-height: 0;
  }

  .newslist-hero-feature {
    min-height: 360px;
  }

  .newslist-hero-feature img {
    min-height: 360px;
  }

  .newslist-layout {
    grid-template-columns: 1fr;
  }

  .newslist-side-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newslist-side-kicker,
  .newslist-side-note {
    grid-column: 1 / -1;
  }

  .newslist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newslist-cta-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 768px) {
  .newslist-page .display {
    font-size: 2.2rem;
  }

  .newslist-hero {
    padding: calc(var(--nav-height) + 34px) 0 44px;
  }

  .newslist-title {
    font-size: 3.1rem;
  }

  .newslist-hero-copy p {
    font-size: 15px;
  }

  .newslist-breadcrumb {
    margin-bottom: 28px;
  }

  .newslist-hero-feature,
  .newslist-hero-feature img {
    min-height: 320px;
  }

  .newslist-feature-media,
  .newslist-feature-media img {
    min-height: 360px;
  }

  .newslist-feature-media figcaption,
  .newslist-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .newslist-proof-strip,
  .newslist-side-panel,
  .newslist-grid,
  .newslist-image-stack {
    grid-template-columns: 1fr;
  }

  .newslist-proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(14, 14, 14, 0.08);
  }

  .newslist-proof-strip div:last-child {
    border-bottom: 0;
  }

  .newslist-card-wide,
  .newslist-grid-simple .newslist-card[data-news-no="1"] {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: 240px minmax(0, 1fr);
  }

  .newslist-card-wide .newslist-card-media,
  .newslist-grid-simple .newslist-card[data-news-no="1"] .newslist-card-media {
    min-height: 240px;
  }

  .newslist-card-wide h3,
  .newslist-grid-simple .newslist-card[data-news-no="1"] h3 {
    font-size: 1.35rem;
  }

  .newslist-image-stack {
    grid-template-rows: repeat(3, 220px);
  }

  .newslist-image-stack img:first-child {
    grid-row: span 1;
  }

  .newslist-cta-panel {
    padding: 26px;
  }

  .newslist-cta-panel .display {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .newslist-title {
    font-size: 2.55rem;
  }

  .newslist-hero-tags span,
  .newslist-topic-strip a {
    width: 100%;
  }

  .newslist-topic-strip {
    width: 100%;
  }

  .newslist-card-body {
    padding: 18px;
  }
}

