.news-lists-page {
  background: #fff;
}

.page-breadcrumb {
  background: #000;
  padding: 12px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: #fff;
  transition: opacity 0.2s ease;
}

.page-breadcrumb a:hover {
  opacity: 0.8;
}

.page-breadcrumb__sep {
  color: #fff;
  font-size: 12px;
}

.page-breadcrumb__current {
  color: var(--red);
}

.news-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: #fff;
}

.news-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0) 100%);
}

.news-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  max-width: 500px;
  padding-top: 34px;
  padding-bottom: 44px;
}

.news-hero__eyebrow {
  margin: 0 0 8px;
  color: #8d0a0b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  white-space: normal;
}

.news-hero__summary {
  max-width: 370px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.news-listing {
  padding: 14px 0 28px;
}

.featured-news-shell {
  position: relative;
  margin-bottom: 18px;
  height: 380px;
}

.featured-news-track {
  position: relative;
  height: 100%;
}

.featured-news-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  height: 100%;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-news-card.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.featured-news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: 28px 34px 24px;
}

.news-date {
  margin: 0;
  color: #9b0d0d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-date--featured {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.featured-news-card h2 {
  max-width: 430px;
  margin: 12px 0 22px;
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.featured-news-card h2 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-news-card .news-more-link {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.featured-news-card__media {
  display: block;
  height: 100%;
  background: #fff;
}

.featured-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #930708;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-more-link::after {
  content: "\2192";
  font-size: 16px;
  line-height: 1;
}

.featured-news-card__dots {
  position: absolute;
  left: 34px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.featured-news-card__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
}

.featured-news-card__dots button.is-active {
  background: #930708;
}

.featured-news-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #930708;
  color: #fff;
  box-shadow: 0 8px 18px rgba(147, 7, 8, 0.28);
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.featured-news-arrow span {
  font-size: 26px;
  line-height: 1;
}

.featured-news-arrow--prev {
  left: -30px;
}

.featured-news-arrow--next {
  right: -30px;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-4px);
  border-color: #d3caca;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.news-card__image {
  display: block;
  aspect-ratio: 1.74 / 1;
  overflow: hidden;
  background: #fff;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img,
.news-card:focus-within .news-card__image img {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px 12px 12px;
}

.news-card h3 {
  margin: 0;
  color: #232323;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.news-card p {
  margin: 4px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.news-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.news-date-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #111;
  line-height: 1;
}

.news-date-block strong {
  font-size: 16px;
  font-weight: 700;
}

.news-date-block span {
  margin-top: 2px;
  color: #9b0d0d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
}

.news-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 29px;
  padding: 0 12px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.news-pagination a.is-active,
.news-pagination a:hover,
.news-pagination a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.news-pagination__control {
  min-width: 64px;
}

@media (max-width: 1280px) {
  .news-hero h1 {
    font-size: 48px;
  }

  .featured-news-card h2 {
    font-size: 18px;
  }

  .news-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .featured-news-arrow {
    display: none;
  }

  .news-hero {
    min-height: 360px;
  }

  .news-hero__content {
    min-height: 360px;
    max-width: 480px;
  }

  .news-hero h1 {
    font-size: 42px;
  }

  .featured-news-card {
    position: absolute;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) 300px;
  }

  .featured-news-shell {
    height: 580px;
  }

  .featured-news-track {
    height: 100%;
  }

  .featured-news-card__content {
    padding: 24px 24px 20px;
  }

  .featured-news-card__media {
    height: 300px;
  }

  .featured-news-card__dots {
    left: 24px;
    bottom: 18px;
  }

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

}

@media (max-width: 820px) {
  .news-hero {
    min-height: 360px;
  }

  .news-hero__content {
    min-height: 360px;
    max-width: 480px;
  }

  .news-hero h1 {
    font-size: 42px;
  }

  .news-hero__summary {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 720px) {
  .news-hero {
    min-height: 300px;
  }

  .news-hero__content {
    min-height: 300px;
    max-width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .news-hero h1 {
    font-size: 32px;
  }

  .featured-news-shell {
    height: 520px;
  }

  .featured-news-card {
    grid-template-rows: minmax(0, 1fr) 260px;
  }

  .featured-news-card h2 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }

  .news-more-link,
  .featured-news-card .news-more-link {
    font-size: 13px;
  }

  .news-date--featured {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .news-listing {
    padding-top: 18px;
  }

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

  .featured-news-card__content {
    padding: 20px 18px;
  }

  .featured-news-card h2 {
    font-size: 14px;
    line-height: 1.4;
  }

  .featured-news-card__media {
    height: 240px;
  }

  .featured-news-shell {
    height: 470px;
  }

  .featured-news-card__dots {
    left: 18px;
    bottom: 16px;
  }

  .news-card h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
  }

  .news-more-link,
  .featured-news-card .news-more-link {
    font-size: 13px;
  }

  .news-date-block strong {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .news-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.14) 100%);
  }

  .news-hero h1 {
    font-size: 28px;
  }

  .news-hero__eyebrow {
    font-size: 14px;
  }

  .news-more-link,
  .featured-news-card .news-more-link {
    font-size: 12px;
  }

  .news-hero__summary {
    font-size: 18px;
    line-height: 1.4;
  }

  .featured-news-card__content,
  .news-card__body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-card__meta {
    align-items: center;
  }

  .news-pagination__control {
    min-width: 52px;
  }
}
