.page-news {
  --news-line-gold: rgba(201, 166, 78, .25);
  padding-bottom: var(--space-6);
}

.page-news .news-title-block {
  position: relative;
  margin-bottom: var(--space-3);
}

.page-news .news-title-block::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: var(--space-2);
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-news .page-title-block__eyebrow {
  color: var(--gold);
  letter-spacing: .2em;
}

.page-news .page-title-block__desc {
  max-width: 68ch;
  line-height: 1.7;
}

.page-news .news-filter {
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.page-news .news-tabs {
  display: flex;
  gap: var(--space-1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}

.page-news .tabs__btn {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  padding: var(--space-2) var(--space-2) 14px;
  white-space: nowrap;
  cursor: pointer;
  flex: 0 0 auto;
  transition: color .2s, border-color .2s;
}

.page-news .tabs__btn[data-active],
.page-news .tabs__btn:hover,
.page-news .tabs__btn:focus-visible {
  color: var(--primary);
  border-color: var(--gold);
}

.page-news .news-panel {
  margin-bottom: var(--space-5);
}

.page-news .news-announce {
  margin-bottom: var(--space-5);
}

.page-news .news-announce__card {
  display: flex;
  flex-direction: column-reverse;
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 166, 78, .10), transparent 42%),
    linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-news .news-announce__content {
  padding: var(--space-3);
}

.page-news .news-announce__content h2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  margin: var(--space-2) 0;
}

.page-news .news-announce__content p {
  color: var(--text-dim);
  line-height: 1.7;
}

.page-news .news-announce__actions {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.page-news .news-announce__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news .news-log {
  margin-bottom: var(--space-5);
}

.page-news .news-log__intro {
  flex: 1 1 auto;
}

.page-news .news-log__intro p {
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 66ch;
  margin-top: var(--space-2);
}

.page-news .news-log__head img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-top: var(--space-2);
}

.page-news .section-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--news-line-gold);
}

.page-news .section-block__head h2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}

.page-news .section-block__more {
  color: var(--primary);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.page-news .news-log__grid {
  border-top: 1px solid var(--line);
}

.page-news .news-log__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-1) var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}

.page-news .news-log__ver {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 2px 7px;
  text-align: center;
  align-self: start;
  background: rgba(201, 166, 78, .06);
}

.page-news .news-log__body h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 17px;
  margin: 0 0 4px;
}

.page-news .news-log__body p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .news-log__time {
  grid-column: 2;
  color: var(--text-mute);
  font-size: 12px;
  font-family: var(--font-mono);
}

.page-news .news-topics {
  margin-bottom: var(--space-5);
}

.page-news .news-topics-grid {
  columns: 1;
  column-gap: var(--space-3);
}

.page-news .news-topic-card {
  break-inside: avoid;
  margin: 0 0 var(--space-3);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.page-news .news-topic-card:hover,
.page-news .news-topic-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-card);
}

.page-news .news-topic-card--cover {
  padding: 0;
  overflow: hidden;
}

.page-news .news-topic-card--cover img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--line);
}

.page-news .news-topic-card__content {
  padding: var(--space-3);
}

.page-news .news-topic-card h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  margin: var(--space-2) 0 var(--space-1);
}

.page-news .news-topic-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 var(--space-2);
}

.page-news .news-topic-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-1);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-mute);
}

.page-news .news-topic-card__meta a {
  color: var(--primary);
  text-decoration: none;
}

.page-news .news-tips {
  margin-bottom: var(--space-5);
}

.page-news .news-tips__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.page-news .news-tips__item {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-3) var(--space-3) 58px;
}

.page-news .news-tips__num {
  position: absolute;
  left: var(--space-2);
  top: var(--space-3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  background: rgba(201, 166, 78, .06);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
}

.page-news .news-tips__item h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 17px;
  margin: 0 0 4px;
}

.page-news .news-tips__item p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-news .news-subscribe {
  margin-top: var(--space-5);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(15, 191, 127, .08), transparent 55%),
    radial-gradient(circle at 12% 100%, rgba(201, 166, 78, .12), transparent 46%),
    var(--bg-surface);
}

.page-news .news-subscribe__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.page-news .news-subscribe__copy {
  flex: 1 1 auto;
}

.page-news .news-subscribe__copy h2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 var(--space-2);
}

.page-news .news-subscribe__copy p {
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 70ch;
  margin-bottom: var(--space-3);
}

.page-news .news-subscribe img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-gold);
}

@media (min-width: 720px) {
  .page-news .news-announce__card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .news-announce__content {
    flex: 1 1 auto;
    padding: var(--space-4);
  }

  .page-news .news-announce__media {
    width: 360px;
    flex: 0 0 auto;
    border-left: 1px solid var(--line);
  }

  .page-news .news-announce__media img {
    height: 100%;
    min-height: 260px;
  }

  .page-news .news-log__head {
    display: flex;
    gap: var(--space-3);
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-3);
  }

  .page-news .news-log__head img {
    margin-top: 0;
    width: 360px;
    max-width: 42%;
  }

  .page-news .news-log__item {
    grid-template-columns: 72px 1fr auto;
    gap: var(--space-3);
    padding: var(--space-2) 0;
  }

  .page-news .news-log__time {
    grid-column: 3;
    align-self: center;
  }

  .page-news .news-topics-grid {
    columns: 2;
  }

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

  .page-news .news-subscribe__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .page-news .news-topics-grid {
    columns: 3;
  }

  .page-news .news-subscribe img {
    max-width: 30%;
  }
}
