.page-news {
  --news-border: 3px solid var(--c-primary);
  --news-shadow: 6px 6px 0 rgba(10, 31, 60, 0.18);
  --news-shadow-lg: 10px 10px 0 rgba(10, 31, 60, 0.24);
  --news-sidebar-w: 230px;
  background: var(--c-paper);
}

.page-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 72px;
}

.page-news .page-head {
  padding: 24px 0 22px;
  border-bottom: 3px solid var(--c-primary);
  margin-bottom: 32px;
  position: relative;
}

.page-news .page-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 72px;
  height: 6px;
  background: var(--c-gold);
}

.page-news .page-head__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-red);
  border: 1px solid var(--c-red);
  padding: 3px 10px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.page-news .page-head__title {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1.15;
  color: var(--c-primary);
  margin: 0 0 12px;
}

.page-news .page-head__lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-gray);
  max-width: 720px;
  margin: 0;
}

.page-news .news-layout {
  display: block;
  margin-top: 36px;
}

.page-news .news-sidebar {
  margin-bottom: 36px;
}

.page-news .sidebar-block {
  background: var(--c-primary);
  border: 2px solid var(--c-primary-deep);
  padding: 20px;
  box-shadow: 8px 8px 0 rgba(10, 31, 60, 0.22);
  margin-bottom: 20px;
}

.page-news .sidebar-block__title {
  color: var(--c-gold);
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.page-news .sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(245, 240, 230, 0.2);
}

.page-news .sidebar-item:last-child {
  border-bottom: none;
}

.page-news .sidebar-item__cat {
  color: var(--c-paper);
  font-size: 14px;
}

.page-news .sidebar-item__count {
  color: var(--c-gold);
  font-weight: 700;
  font-size: 15px;
  min-width: 22px;
  text-align: right;
}

.page-news .sidebar-block--note {
  background: var(--c-paper-deep);
  border-color: var(--c-gold);
}

.page-news .sidebar-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.page-news .sidebar-note__icon {
  color: var(--c-gold);
  font-size: 14px;
  transform: rotate(45deg);
  display: inline-block;
  line-height: 1;
}

.page-news .sidebar-note__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-primary);
  margin: 0;
}

.page-news .news-main {
  min-width: 0;
}

.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--c-primary);
}

.page-news .section-head__line {
  flex: 1;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 16px, transparent 16px 28px);
}

.page-news .section-index {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  background: var(--c-primary);
  padding: 6px 10px;
}

.page-news .section-title {
  font-size: 24px;
  color: var(--c-primary);
  margin: 0;
  white-space: nowrap;
}

.page-news .article-card {
  position: relative;
  background: var(--c-white);
  border: var(--news-border);
  box-shadow: var(--news-shadow);
  padding: 16px;
  margin-top: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--news-shadow-lg);
}

.page-news .article-num {
  position: absolute;
  top: -14px;
  right: 12px;
  background: var(--c-gold);
  color: var(--c-primary);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  padding: 2px 10px;
  border: 2px solid var(--c-primary);
  box-shadow: 3px 3px 0 var(--c-primary-deep);
  z-index: 2;
  pointer-events: none;
}

.page-news .article-media {
  margin: -16px -16px 14px;
  overflow: hidden;
  border-bottom: 2px solid var(--c-primary);
}

.page-news .article-media__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .article-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.page-news .article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-news .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  line-height: 1.4;
  border-radius: 0;
}

.page-news .tag--red {
  border: 1px solid var(--c-red);
  color: var(--c-red);
  background: transparent;
}

.page-news .article-time {
  font-size: 13px;
  color: var(--c-gray);
  letter-spacing: 0.02em;
}

.page-news .article-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--c-primary);
  line-height: 1.4;
  margin: 0;
}

.page-news .article-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
  margin: 0;
}

.page-news .article-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-red);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.page-news .article-more:hover {
  border-color: var(--c-red);
}

.page-news .btn--sm {
  padding: 5px 14px;
  font-size: 13px;
}

.page-news .article-card--feature {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.page-news .article-card--feature .article-media {
  margin: 0;
  border-bottom: 3px solid var(--c-primary);
}

.page-news .article-card--feature .article-media__img {
  width: 100%;
  height: auto;
}

.page-news .article-card--feature .article-content {
  padding: 20px 20px 24px;
  gap: 14px;
}

.page-news .article-card--feature .article-title {
  font-size: 22px;
}

.page-news .article-card--feature .article-excerpt {
  font-size: 15px;
}

.page-news .article-card--plain .article-content {
  min-height: 120px;
}

.page-news .article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .news-hot {
  margin-top: 56px;
}

.page-news .section-head--alt {
  border-bottom-color: var(--c-gold);
}

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

.page-news .hot-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-primary);
  border: 2px solid var(--c-primary-deep);
  box-shadow: 6px 6px 0 rgba(10, 31, 60, 0.2);
  padding: 14px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .hot-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(10, 31, 60, 0.26);
}

.page-news .hot-num {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.page-news .hot-body {
  flex: 1;
  min-width: 0;
}

.page-news .hot-title {
  font-size: 15px;
  color: var(--c-paper);
  line-height: 1.45;
  margin: 0 0 6px;
}

.page-news .hot-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .tag--dark {
  border: 1px solid rgba(245, 240, 230, 0.5);
  color: var(--c-paper);
  background: transparent;
}

.page-news .hot-stats {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.65);
  letter-spacing: 0.02em;
}

.page-news .news-subscribe {
  margin-top: 56px;
}

.page-news .subscribe-frame {
  border: 3px solid var(--c-gold);
  background: var(--c-white);
  box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.35);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.page-news .subscribe-mark {
  display: inline-block;
  font-size: 18px;
  color: var(--c-gold);
  transform: rotate(45deg);
  margin-bottom: 10px;
}

.page-news .subscribe-title {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--c-primary);
  margin: 0 0 12px;
}

.page-news .subscribe-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray);
  margin: 0 auto 20px;
  max-width: 560px;
}

.page-news .subscribe-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .page-news .container {
    padding-top: 40px;
    padding-bottom: 96px;
  }

  .page-news .page-head {
    padding: 36px 0 28px;
    margin-bottom: 40px;
  }

  .page-news .page-head__title {
    font-size: 44px;
  }

  .page-news .page-head__lead {
    font-size: 17px;
  }

  .page-news .news-layout {
    display: grid;
    grid-template-columns: var(--news-sidebar-w) 1fr;
    gap: 44px;
    align-items: start;
    margin-top: 44px;
  }

  .page-news .news-sidebar {
    position: sticky;
    top: 96px;
    margin-bottom: 0;
  }

  .page-news .article-card--feature {
    grid-template-columns: 3fr 4fr;
    margin-top: 18px;
  }

  .page-news .article-card--feature .article-media {
    border-bottom: none;
    border-right: 3px solid var(--c-primary);
  }

  .page-news .article-card--feature .article-content {
    padding: 24px 24px 28px;
  }

  .page-news .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-news .hot-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-news .subscribe-frame {
    padding: 38px 44px;
  }

  .page-news .subscribe-title {
    font-size: 26px;
  }
}
