.news-list-page {
  padding: 28px 0 10px;
}

.news-list-page__header {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
}

.news-list-page__title {
  margin: 0 0 12px;
  color: var(--primary-light);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}

.news-list-page__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 860px;
}

.news-filters {
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
}

.news-filters__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(180px, 1fr));
  gap: 16px;
}

.news-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-filter--search {
  min-width: 0;
}

.news-filter__label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-filter__input,
.news-filter__select {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.news-filter__input::placeholder {
  color: var(--muted);
}

.news-filter__input:focus,
.news-filter__select:focus {
  border-color: rgba(255, 177, 111, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 177, 111, 0.08);
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.news-toolbar__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.news-toolbar__reset {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 177, 111, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary-light);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-toolbar__reset:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 177, 111, 0.36);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 177, 111, 0.18);
}

.news-card__media {
  display: block;
  border-bottom: 1px solid var(--line);
}

.news-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.news-card__body {
  padding: 22px 24px 20px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.news-card__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
}

.news-card__title a {
  color: var(--primary-light);
  text-decoration: none;
}

.news-card__title a:hover {
  text-decoration: underline;
}

.news-card__excerpt {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.news-card__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.news-card__link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
}

.news-card__link:hover {
  text-decoration: underline;
}

.news-empty {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 177, 111, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.is-hidden {
  display: none !important;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.news-pagination__button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 177, 111, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-pagination__button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(255, 177, 111, 0.32);
}

.news-pagination__button.is-active {
  background: rgba(199, 68, 10, 0.18);
  color: var(--primary-light);
  border-color: rgba(255, 177, 111, 0.36);
}

.news-pagination__button:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 900px) {
  .news-filters__top {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .news-toolbar__reset {
    width: 100%;
  }

  .news-card__body {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .news-list-page__header,
  .news-filters,
  .news-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-list-page__title {
    font-size: 2rem;
  }
}