.page-news {
  position: relative;
  background: var(--bg-void);
  color: var(--text-body);
  overflow-x: clip;
  padding-bottom: calc(var(--gap-page) * 2);
}

.page-news .news-shell {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(20px, 4vw, 48px) var(--gap-page) 0;
}

.page-news .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
}

.page-news .breadcrumbs a {
  color: var(--color-acid);
  text-decoration: none;
}

.page-news .breadcrumbs a:hover {
  text-decoration: underline;
}

.page-news .news-hero {
  position: relative;
  padding: 36px 0 44px;
  z-index: 1;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(57, 255, 20, .045) 55%, transparent 70%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "FEED LIVE";
  position: absolute;
  top: 10px;
  right: -10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(70px, 15vw, 180px);
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .015);
  -webkit-text-stroke: 1px rgba(57, 255, 20, .07);
  pointer-events: none;
  white-space: nowrap;
}

.page-news .news-hero-index {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--color-acid);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero-copy {
  position: relative;
  z-index: 1;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  color: var(--color-white);
  max-width: 12em;
  margin: 0 0 16px;
}

.page-news .news-hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: var(--text-body);
  max-width: 46em;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

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

.page-news .section-block,
.page-news .subscribe-strip {
  scroll-margin-top: 120px;
}

.page-news .section-block {
  margin-bottom: 64px;
}

.page-news .section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-acid);
}

.page-news .section-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}

.page-news .section-count {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--text-muted);
  white-space: nowrap;
}

.page-news .section-intro {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 62em;
  font-size: clamp(15px, 1.6vw, 17px);
}

.page-news .news-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-news .news-cat-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.page-news .news-cat-tab:hover {
  color: var(--color-white);
  border-color: var(--color-acid);
}

.page-news .news-cat-tab[aria-selected="true"] {
  background: var(--color-acid);
  border-color: var(--color-acid);
  color: var(--bg-void);
}

.page-news .news-panel {
  outline: none;
}

.page-news .news-panel[data-visible="false"] {
  display: none;
}

.page-news .news-timeline,
.page-news .panel-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news .timeline-item {
  margin-bottom: 22px;
}

.page-news .timeline-item:last-child {
  margin-bottom: 0;
}

.page-news .article-card {
  position: relative;
  padding: 22px;
  background: var(--bg-panel);
  border-radius: 4px 4px 14px 14px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: transform .25s ease;
}

.page-news .article-card:hover {
  transform: translateY(-2px);
}

.page-news .article-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-acid), rgba(57, 255, 20, .1) 60%, transparent);
  pointer-events: none;
}

.page-news .article-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 18px;
}

.page-news .article-card-body {
  min-width: 0;
}

.page-news .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-news .article-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-acid);
  opacity: .65;
  letter-spacing: .08em;
}

.page-news .article-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  color: var(--color-acid);
  background: rgba(57, 255, 20, .1);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.page-news .article-label-review {
  color: var(--color-acid);
  background: rgba(57, 255, 20, .1);
}

.page-news .article-label-transfer {
  color: var(--color-gold);
  background: rgba(255, 215, 0, .12);
}

.page-news .article-label-data {
  color: #00BFFF;
  background: rgba(0, 191, 255, .12);
}

.page-news .article-time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.page-news .article-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.28;
  color: var(--color-white);
  margin: 0 0 12px;
}

.page-news .article-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.page-news .article-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-acid);
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

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

.page-news .highlight-gold {
  color: var(--color-gold);
}

.page-news .review-block {
  background: linear-gradient(180deg, transparent, rgba(13, 43, 62, .35));
  padding: 36px 24px 40px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
}

.page-news .review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-news .review-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-news .review-list-item {
  background: var(--bg-panel);
  border-left: 3px solid var(--color-acid);
  padding: 18px 20px;
  border-radius: 6px;
  transition: transform .2s ease;
}

.page-news .review-list-item:hover {
  transform: translateX(4px);
}

.page-news .review-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4;
  color: var(--color-white);
  margin: 0 0 8px;
}

.page-news .review-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.page-news .review-visual {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-news .review-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-news .review-visual-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.page-news .review-export-btn {
  justify-self: start;
}

.page-news .news-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-news .side-card {
  background: var(--bg-panel);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--line-soft);
}

.page-news .side-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 3px solid var(--color-acid);
}

.page-news .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .tag-item {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  color: var(--text-body);
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.page-news .tag-item:hover {
  border-color: var(--color-acid);
  color: var(--color-white);
  background: rgba(57, 255, 20, .08);
}

.page-news .tag-acid {
  color: var(--color-acid);
  border-color: var(--line-acid);
}

.page-news .tag-gold {
  color: var(--color-gold);
  border-color: rgba(255, 215, 0, .28);
  background: rgba(255, 215, 0, .05);
}

.page-news .hot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news .hot-item {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--line-soft);
}

.page-news .hot-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-news .hot-index {
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-acid);
  opacity: .55;
}

.page-news .hot-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.55;
  transition: color .2s;
}

.page-news .hot-link:hover {
  color: var(--color-acid);
}

.page-news .side-subscribe {
  background: linear-gradient(140deg, var(--bg-panel), rgba(13, 43, 62, .4));
  border-color: var(--line-acid);
}

.page-news .side-sub-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 16px;
}

.page-news .side-sub-note {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.page-news .transfer-block {
  margin-top: 8px;
}

.page-news .transfer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.page-news .transfer-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.page-news .transfer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.page-news .transfer-item {
  position: relative;
  padding: 0 0 20px 30px;
}

.page-news .transfer-item:last-child {
  padding-bottom: 0;
}

.page-news .transfer-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: -6px;
  width: 2px;
  background: var(--line-soft);
}

.page-news .transfer-item:last-child::before {
  display: none;
}

.page-news .transfer-item::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00BFFF;
  box-shadow: 0 0 12px rgba(0, 191, 255, .55);
}

.page-news .transfer-item-acid::after {
  background: var(--color-acid);
  box-shadow: 0 0 12px rgba(57, 255, 20, .6);
}

.page-news .transfer-item-gold::after {
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, .6);
}

.page-news .transfer-league {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1;
  color: #00BFFF;
  background: rgba(0, 191, 255, .1);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.page-news .transfer-item-acid .transfer-league {
  color: var(--color-acid);
  background: rgba(57, 255, 20, .1);
}

.page-news .transfer-item-gold .transfer-league {
  color: var(--color-gold);
  background: rgba(255, 215, 0, .1);
}

.page-news .transfer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.3;
  color: var(--color-white);
  margin: 0 0 6px;
}

.page-news .transfer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.page-news .subscribe-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 34px 26px;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--line-acid);
  position: relative;
  overflow: hidden;
}

.page-news .subscribe-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-green);
}

.page-news .subscribe-copy .section-head {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.page-news .subscribe-copy .section-intro {
  margin-bottom: 22px;
}

.page-news .subscribe-panel {
  display: grid;
  gap: 14px;
  align-content: center;
}

.page-news .subscribe-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.page-news .step-no {
  flex: 0 0 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-acid);
  color: var(--bg-void);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
}

@media (min-width: 640px) {
  .page-news .news-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
  }

  .page-news .news-hero-index {
    text-align: right;
    margin-bottom: 0;
  }

  .page-news .article-card-featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
  }

  .page-news .article-card-featured .article-card-img {
    height: 100%;
    max-height: 320px;
    margin-bottom: 0;
    object-fit: cover;
  }

  .page-news .review-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
  }

  .page-news .transfer-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

  .page-news .subscribe-strip {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 40px;
    padding: 40px;
  }
}

@media (min-width: 992px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
  }

  .page-news .news-side {
    position: sticky;
    top: 96px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-news .article-card,
  .page-news .review-list-item,
  .page-news .news-cat-tab {
    transition: none;
  }
}
