.news-page {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 65%);
  padding: 36px 0 54px;
}

.news-hero h1 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: #0f2248;
}

.news-hero p {
  margin: 12px 0 0;
  max-width: 660px;
  color: #495c83;
  font-size: 18px;
}

.news-layout-section {
  margin-top: 26px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.news-main-column {
  display: grid;
  gap: 24px;
}

.news-featured-card {
  background: #fff;
  border: 1px solid #e4ebf7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8, 38, 98, 0.08);
}

.news-featured-image {
  position: relative;
  display: block;
}

.news-featured-image img {
  width: 100%;
  height: min(420px, 42vw);
  object-fit: cover;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  font-family: "Saira", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #f3324f, #c80f29);
}

.news-featured-image .news-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.news-featured-content {
  padding: 18px 20px 22px;
}

.news-featured-content time,
.news-card-content time,
.news-sidebar-item span,
.news-detail-article time {
  color: #d71733;
  font-weight: 700;
  font-size: 13px;
}

.news-featured-content h2 {
  margin: 12px 0 10px;
  font-family: "Saira", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
}

.news-featured-content p {
  margin: 0 0 18px;
  color: #42557d;
  font-size: 18px;
}

.news-cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card-item {
  background: #fff;
  border: 1px solid #e4ebf7;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 38, 98, 0.07);
}

.news-card-thumb {
  position: relative;
  display: block;
}

.news-card-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  background: #e11e34;
  color: #fff;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Saira", sans-serif;
  letter-spacing: 0.5px;
}

.news-card-content {
  padding: 12px 14px 16px;
}

.news-card-content h3 {
  margin: 9px 0 12px;
  font-size: 24px;
  line-height: 1.12;
  font-family: "Saira", sans-serif;
}

.news-read-more {
  color: #cf102b;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-read-more i {
  font-size: 11px;
}

.news-sidebar {
  display: grid;
  gap: 16px;
}

.news-sidebar-block {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4ebf7;
  box-shadow: 0 8px 20px rgba(8, 38, 98, 0.07);
  padding: 16px;
}

.news-sidebar-block h3 {
  margin: 0 0 14px;
  font-family: "Saira", sans-serif;
  font-size: 30px;
  color: #11254d;
}

.news-sidebar-list {
  display: grid;
  gap: 12px;
}

.news-sidebar-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
}

.news-sidebar-item img {
  width: 88px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
}

.news-sidebar-item strong {
  display: block;
  color: #1b2d52;
  line-height: 1.2;
  font-size: 15px;
}

.news-sidebar-item span {
  display: block;
  margin-top: 3px;
}

.news-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.news-meta-list li {
  border-bottom: 1px solid #edf1f8;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-meta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-meta-list span {
  color: #364a73;
  font-size: 15px;
}

.news-meta-list strong {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f1f5fd;
  color: #d30f2b;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.news-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.news-pagination a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #dce5f4;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #304c7c;
  font-size: 14px;
}

.news-pagination a.is-current,
.news-pagination a:hover {
  color: #fff;
  background: #d30f2b;
  border-color: #d30f2b;
}

.news-detail-page {
  padding-top: 26px;
}

.news-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #6a7da5;
}

.news-breadcrumb a {
  color: #4a6596;
}

.news-detail-article {
  background: #fff;
  border: 1px solid #e4ebf7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(8, 38, 98, 0.08);
  padding: 22px;
}

.news-detail-article .news-pill {
  margin-bottom: 12px;
}

.news-detail-article h1 {
  margin: 10px 0 12px;
  font-family: "Saira", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
}

.news-detail-lead {
  margin: 0;
  font-size: 19px;
  color: #3f537d;
}

.news-share-row {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-share-row span {
  color: #586d95;
  font-size: 15px;
  font-weight: 600;
}

.news-share-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.news-share-row a:nth-of-type(1) {
  background: #1955d1;
}

.news-share-row a:nth-of-type(2) {
  background: #d41445;
}

.news-share-row a:nth-of-type(3) {
  background: #17a851;
}

.news-detail-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

.news-detail-article p {
  font-size: 18px;
  color: #2f436d;
  line-height: 1.45;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  margin: 20px 0 8px;
  color: #142d58;
  font-family: "Saira", sans-serif;
}

.news-detail-content ul,
.news-detail-content ol {
  margin: 10px 0 12px;
  padding-left: 22px;
  color: #2f436d;
  font-size: 18px;
}

.news-detail-article blockquote {
  margin: 18px 0;
  padding: 16px;
  border-left: 4px solid #d1112d;
  background: #f8faff;
  color: #1c325d;
  font-style: italic;
  border-radius: 10px;
}

.news-detail-nav {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-detail-nav-item {
  border: 1px solid #e3eaf7;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #fbfcff;
}

.news-detail-nav-item span {
  color: #d00f2b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-detail-nav-item strong {
  font-size: 16px;
  line-height: 1.2;
  color: #1e335e;
}

.news-not-found {
  background: #fff;
  border: 1px solid #e4ebf7;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(8, 38, 98, 0.07);
}

.news-not-found h1 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 34px;
}

.news-not-found p {
  margin: 10px 0 18px;
  color: #4a5e86;
}

@media (max-width: 1180px) {
  .news-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .news-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-featured-content h2 {
    font-size: 30px;
  }

  .news-card-content h3,
  .news-sidebar-block h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .news-page {
    padding-top: 18px;
  }

  .news-cards-grid,
  .news-detail-nav {
    grid-template-columns: 1fr;
  }

  .news-featured-content p,
  .news-detail-article p,
  .news-detail-lead,
  .news-hero p {
    font-size: 16px;
  }

  .news-featured-content h2,
  .news-detail-article h1,
  .news-sidebar-block h3,
  .news-card-content h3 {
    font-size: 26px;
  }

  .news-sidebar-item {
    grid-template-columns: 74px 1fr;
  }

  .news-sidebar-item img {
    width: 74px;
    height: 62px;
  }
}
