.news-page {
  min-height: 70vh;
  padding-bottom: 76px;
  background: #fff;
}

.news-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.news-heading {
  padding: 46px 0 38px;
  text-align: center;
}

.news-heading h1,
.news-editors > h2 {
  margin: 0;
  color: #263442;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}

.news-heading h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.news-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #6b7785;
  font-size: .92rem;
}

.news-loading,
.news-empty {
  padding: 64px 0;
  color: var(--text-muted);
  text-align: center;
}

.news-card {
  min-width: 0;
  color: #19232e;
  cursor: pointer;
}

.news-card:focus-visible {
  outline: 3px solid rgba(193, 18, 31, .22);
  outline-offset: 4px;
}

.news-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #eef0f2;
}

.news-card h2,
.news-card h3 {
  margin: 0;
  line-height: 1.22;
}

.news-card-category {
  margin: 0 0 6px;
  color: #788492;
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.news-main-grid {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(390px, 1.75fr) minmax(250px, .9fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 58px;
}

.news-main-grid.has-no-left {
  grid-template-columns: minmax(390px, 1.75fr) minmax(250px, .9fr);
}

.news-main-grid.has-no-right {
  grid-template-columns: minmax(180px, .72fr) minmax(390px, 1.75fr);
}

.news-main-grid.has-no-left.has-no-right {
  grid-template-columns: 1fr;
}

.news-main-grid.has-no-center {
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1fr);
}

.news-left-list {
  display: grid;
  gap: 13px;
}

.news-left-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.news-left-item img {
  height: 64px;
}

.news-left-item h3 {
  font-size: .88rem;
  font-weight: 700;
}

.news-left-item:hover h3,
.news-compact-card:hover h3,
.news-editor-large:hover h3,
.news-editor-list-item:hover h3 {
  color: var(--brand);
}

.news-center-column {
  display: grid;
  gap: 22px;
}

.news-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #202a35;
}

.news-hero img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  aspect-ratio: 16 / 10;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(transparent, rgba(8, 13, 19, .88));
}

.news-hero-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: #fff;
}

.news-hero-overlay .news-card-category {
  color: rgba(255, 255, 255, .8);
}

.news-hero h2 {
  max-width: 90%;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.news-under-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.news-compact-card img {
  height: 150px;
  margin-bottom: 11px;
}

.news-compact-card h3 {
  font-size: 1rem;
}

.news-right-feature {
  overflow: hidden;
  border: 1px solid #dfe3e7;
  background: #fff;
}

.news-right-feature > img {
  height: 260px;
}

.news-right-feature-body {
  padding: 24px 20px 25px;
}

.news-right-feature h2 {
  color: #4e5966;
  font-size: 1.55rem;
  font-weight: 500;
}

.news-right-feature-body > p:not(.news-card-category) {
  margin: 12px 0;
  color: #6d7885;
  font-size: .86rem;
  line-height: 1.55;
}

.news-read-more {
  color: #1667c5;
  font-size: .82rem;
  font-weight: 650;
}

.news-editors {
  padding-top: 8px;
}

.news-editors > h2 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

.news-editors-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, .8fr);
  gap: 30px;
  align-items: start;
}

.news-editors-grid.has-no-list {
  grid-template-columns: 1fr;
}

.news-editor-large-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.news-editor-large img {
  height: 245px;
  margin-bottom: 16px;
}

.news-editor-large .news-card-category,
.news-editor-large h3 {
  text-align: center;
}

.news-editor-large h3 {
  font-size: 1.12rem;
}

.news-editor-list {
  display: grid;
  gap: 16px;
}

.news-editor-list-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
}

.news-editor-list-item img {
  height: 76px;
}

.news-editor-list-item h3 {
  font-size: .9rem;
}

.news-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-modal[hidden] { display: none; }

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, .72);
  backdrop-filter: blur(5px);
}

.news-modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.news-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  font-size: 1.6rem;
  cursor: pointer;
}

.news-modal-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.news-modal-body {
  padding: 34px clamp(24px, 6vw, 60px) 48px;
}

.news-modal-body h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.news-modal-summary {
  margin: 18px 0 25px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.6;
}

.news-modal-article p {
  margin: 0 0 18px;
  line-height: 1.75;
}

body.news-modal-open { overflow: hidden; }

@media (max-width: 980px) {
  .news-main-grid,
  .news-main-grid.has-no-left,
  .news-main-grid.has-no-right,
  .news-main-grid.has-no-center {
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, .8fr);
  }
  .news-left-list {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .news-editors-grid {
    grid-template-columns: 1fr;
  }
  .news-editor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .news-container {
    width: min(100% - 28px, 1180px);
  }
  .news-heading {
    padding: 34px 0 28px;
  }
  .news-main-grid,
  .news-main-grid.has-no-left,
  .news-main-grid.has-no-right,
  .news-main-grid.has-no-center {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 44px;
  }
  .news-left-list {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    order: 2;
  }
  .news-center-column { order: 1; }
  .news-right-column { order: 3; }
  .news-hero,
  .news-hero img {
    min-height: 270px;
  }
  .news-under-hero,
  .news-editor-large-grid,
  .news-editor-list {
    grid-template-columns: 1fr;
  }
  .news-right-feature > img,
  .news-editor-large img {
    height: 230px;
  }
  .news-modal {
    padding: 0;
  }
  .news-modal-card {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
}
