body.news-template {
  background: #f6f7f9;
}

.news-page {
  --news-red: #d7222a;
  --news-ink: #101318;
  --news-muted: #626b78;
  --news-line: rgba(16, 19, 24, .1);
  color: var(--news-ink);
}

.news-intro {
  padding: 14.4rem 0 6.4rem;
  border-bottom: 1px solid var(--news-line);
  background: #fff;
}

.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #7a8492;
  font-size: 1.34rem;
}

.news-breadcrumb a {
  transition: color .2s ease;
}

.news-breadcrumb a:hover {
  color: var(--news-red);
}

.news-intro-copy {
  max-width: 92rem;
  margin-top: 3.8rem;
}

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--news-red);
  font-size: 1.32rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: currentColor;
}

.news-intro h1 {
  margin: 1.2rem 0 0;
  font-size: 5.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-intro-copy p {
  max-width: 86rem;
  margin: 2rem 0 0;
  color: var(--news-muted);
  font-size: 1.78rem;
  line-height: 1.85;
}

.news-content {
  min-height: 70rem;
}

.news-tools-wrap {
  position: sticky;
  top: 9.8rem;
  z-index: 24;
  border-bottom: 1px solid var(--news-line);
  background: rgba(246, 247, 249, .9);
  backdrop-filter: blur(1.8rem) saturate(140%);
  -webkit-backdrop-filter: blur(1.8rem) saturate(140%);
}

.news-tools {
  min-height: 8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 31rem;
  gap: 2rem;
  align-items: center;
}

.news-filters {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}

.news-filters button {
  min-height: 4.2rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: .7rem;
  color: #596273;
  background: transparent;
  font-size: 1.38rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.news-filters button:hover,
.news-filters button.active {
  color: var(--news-red);
  background: #fff0f1;
}

.news-search {
  height: 4.6rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 3.4rem;
  gap: .8rem;
  align-items: center;
  padding: 0 .7rem 0 1.3rem;
  border: 1px solid rgba(16, 19, 24, .13);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .92);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.news-search:focus-within {
  border-color: rgba(215, 34, 42, .42);
  box-shadow: 0 0 0 .3rem rgba(215, 34, 42, .08);
}

.news-search > svg {
  width: 2rem;
  height: 2rem;
  color: #8a93a2;
}

.news-search input {
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--news-ink);
  background: transparent;
  font-size: 1.38rem;
}

.news-search input::placeholder {
  color: #929aa7;
}

.news-search-clear {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: .6rem;
  color: #687282;
  background: transparent;
  cursor: pointer;
}

.news-search-clear:hover {
  color: var(--news-red);
  background: #fff0f1;
}

.news-search-clear svg {
  width: 1.7rem;
  height: 1.7rem;
}

.news-results {
  padding-top: 3.2rem;
  padding-bottom: 9rem;
}

.news-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  color: #7a8492;
  font-size: 1.34rem;
}

.news-results-head p {
  margin: 0;
}

.news-results-head strong {
  color: var(--news-ink);
  font-size: 1.6rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-radius: .8rem;
  background: #fff;
  box-shadow: 0 1.4rem 4rem rgba(16, 19, 24, .045);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.news-card:hover {
  border-color: rgba(215, 34, 42, .25);
  box-shadow: 0 2rem 5rem rgba(16, 19, 24, .09);
  transform: translateY(-.4rem);
}

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

.news-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-bottom: 1px solid var(--news-line);
  background: #eef1f5;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.025);
}

.news-card-category {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  padding: .5rem .85rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: .6rem;
  color: #fff;
  background: var(--news-category-color, rgba(73, 80, 91, .84));
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8a93a2;
  font-size: 1.2rem;
}

.news-card h2 {
  display: -webkit-box;
  min-height: 5.8rem;
  margin: 0;
  overflow: hidden;
  color: var(--news-ink);
  font-size: 2.15rem;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.7rem;
  color: var(--news-red);
  font-size: 1.32rem;
  font-weight: 800;
}

.news-card-foot > span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.news-card-foot time {
  margin-left: auto;
  color: #8a93a2;
  font-size: 1.18rem;
  font-weight: 500;
}

.news-card-foot svg {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform .2s ease;
}

.news-card:hover .news-card-foot svg {
  transform: translateX(.35rem);
}

.news-empty {
  padding: 8rem 2rem;
  border: 1px dashed rgba(16, 19, 24, .16);
  border-radius: .8rem;
  text-align: center;
  background: #fff;
}

.news-empty strong {
  font-size: 2.2rem;
}

.news-empty p {
  margin: .8rem 0 0;
  color: var(--news-muted);
  font-size: 1.46rem;
}

.news-empty button {
  min-height: 4.2rem;
  margin-top: 2rem;
  padding: 0 1.6rem;
  border: 1px solid rgba(215, 34, 42, .28);
  border-radius: .7rem;
  color: var(--news-red);
  background: #fff0f1;
  font-weight: 800;
  cursor: pointer;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 4.6rem;
}

.news-pagination button {
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(16, 19, 24, .13);
  border-radius: .7rem;
  color: #4d5767;
  background: #fff;
  font-size: 1.34rem;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.news-pagination button:hover:not(:disabled),
.news-pagination button.active {
  color: #fff;
  border-color: var(--news-red);
  background: var(--news-red);
}

.news-pagination button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

@media (max-width: 1180px) {
  .news-tools {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .news-filters {
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: none;
  }

  .news-filters::-webkit-scrollbar {
    display: none;
  }

  .news-filters button {
    flex: 0 0 auto;
  }

  .news-search {
    width: min(100%, 42rem);
  }
}

@media (max-width: 900px) {
  .news-intro {
    padding-top: 12rem;
  }

  .news-intro h1 {
    font-size: 4.8rem;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .news-intro {
    padding: 10.8rem 0 4rem;
  }

  .news-breadcrumb {
    font-size: 1.18rem;
  }

  .news-intro-copy {
    margin-top: 2.8rem;
  }

  .news-eyebrow {
    font-size: 1.16rem;
  }

  .news-intro h1 {
    font-size: 3.8rem;
  }

  .news-intro-copy p {
    margin-top: 1.4rem;
    font-size: 1.48rem;
    line-height: 1.75;
  }

  .news-tools-wrap {
    top: 7.8rem;
  }

  .news-tools {
    gap: .8rem;
    padding-top: .8rem;
    padding-bottom: .9rem;
  }

  .news-filters {
    gap: .2rem;
    margin-right: -2.4rem;
    padding-right: 2.4rem;
  }

  .news-filters button {
    min-height: 3.8rem;
    padding: 0 1rem;
    font-size: 1.2rem;
  }

  .news-search {
    width: 100%;
    height: 4.2rem;
  }

  .news-results {
    padding-top: 2.2rem;
    padding-bottom: 6rem;
  }

  .news-results-head {
    margin-bottom: 1.4rem;
    font-size: 1.18rem;
  }

  .news-results-head strong {
    font-size: 1.4rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .news-card {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    align-items: center;
    height: 9.375rem;
  }

  .news-card-media {
    width: 100%;
    height: auto;
    min-height: 0;
    align-self: center;
    aspect-ratio: 16 / 10;
    border-right: 1px solid var(--news-line);
    border-bottom: 1px solid var(--news-line);
  }

  .news-card-category {
    left: .8rem;
    bottom: .8rem;
    padding: .4rem .6rem;
    font-size: 1.08rem;
  }

  .news-card-body {
    min-width: 0;
    height: 100%;
    padding: .8rem 1.1rem;
  }

  .news-card-meta {
    font-size: 1.08rem;
  }

  .news-card-meta span {
    display: none;
  }

  .news-card h2 {
    height: 3.72rem;
    min-height: 3.72rem;
    margin-top: 0;
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .news-card-foot {
    min-height: 1.5rem;
    padding-top: .6rem;
    font-size: 1.18rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .news-card-foot time {
    font-size: 1.08rem;
  }

  .news-card-foot svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .news-pagination {
    gap: .5rem;
    margin-top: 3.2rem;
  }

  .news-pagination button {
    min-width: 3.6rem;
    height: 3.8rem;
    padding: 0 .8rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 390px) {
  .news-card {
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .news-card-body {
    padding: .8rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card-media img,
  .news-card-foot svg {
    transition: none;
  }
}

