.page-news .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-news .breadcrumb-link {
  color: var(--sky-blue);
  font-weight: 700;
  text-decoration: none;
}

.page-news .breadcrumb-link:hover {
  color: var(--neon-green-deep);
}

.page-news .breadcrumb-current {
  font-family: var(--font-mono);
  color: var(--ink);
}

.page-news .page-header {
  position: relative;
  margin-bottom: 40px;
  padding: 40px 24px 44px;
  background:
    linear-gradient(115deg, transparent 0 83%, var(--sky-blue) 83% 100%),
    linear-gradient(180deg, var(--light-mist) 0%, rgba(245, 247, 250, 0) 100%);
  border-left: 4px solid var(--neon-green);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .page-header::after {
  content: "SKY / NEWS";
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(15, 23, 42, 0.16);
  writing-mode: vertical-rl;
  display: none;
}

.page-news .page-header .eyebrow {
  color: var(--sky-blue);
  font-weight: 700;
}

.page-news .page-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  color: var(--ink);
}

.page-news .page-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: var(--neon-green);
  vertical-align: 4px;
}

.page-news .page-lead {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

.page-news .news-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

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

  .page-news .news-sidebar {
    position: sticky;
    top: 24px;
  }
}

.page-news .news-sidebar {
  display: grid;
  gap: 22px;
}

.page-news .tag-panel,
.page-news .data-panel {
  background: var(--white);
  border: 1px solid var(--sky-soft);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
}

.page-news .section-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.page-news .section-title::before {
  content: "/";
  color: var(--sky-blue);
  font-family: var(--font-mono);
  font-weight: 900;
}

.page-news .tag-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-size: 13px;
}

@media (max-width: 340px) {
  .page-news .tag-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--light-mist);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.page-news .tag-item:hover,
.page-news .tag-item:focus-visible {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: var(--white);
}

.page-news .tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-blue);
  flex: none;
}

.page-news .dot-green {
  background: var(--neon-green-deep);
}

.page-news .dot-red {
  background: var(--score-red);
}

.page-news .dot-dark {
  background: var(--deep-space);
}

.page-news .subscribe-panel {
  position: relative;
  background: var(--deep-space);
  color: var(--white);
  padding: 22px 20px 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .subscribe-panel::before {
  content: "+";
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: var(--font-mono);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: rgba(57, 255, 20, 0.18);
  pointer-events: none;
}

.page-news .subscribe-panel .eyebrow {
  color: var(--neon-green);
  font-weight: 700;
}

.page-news .subscribe-panel .section-title {
  color: var(--white);
}

.page-news .subscribe-panel p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.page-news .subscribe-mail {
  display: block;
  margin: 12px 0 16px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--neon-green);
  color: var(--white);
  font-size: 13px;
  word-break: break-all;
}

.page-news .subscribe-panel .btn {
  width: 100%;
  text-align: center;
}

.page-news .subscribe-more {
  margin-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 10px;
}

.page-news .subscribe-more summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-green);
}

.page-news .subscribe-more summary::-webkit-details-marker {
  display: none;
}

.page-news .subscribe-more summary::before {
  content: "+";
  font-family: var(--font-mono);
  margin-right: 6px;
  color: var(--sky-blue);
}

.page-news .subscribe-more[open] summary::before {
  content: "−";
}

.page-news .subscribe-more p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .data-panel {
  border-left: 3px solid var(--sky-blue);
}

.page-news .data-panel .eyebrow {
  color: var(--neon-green-deep);
  font-weight: 700;
}

.page-news .data-panel .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 10px;
}

.page-news .data-panel .stat-label {
  font-size: 12px;
  line-height: 1.5;
  color: #667085;
  display: block;
  margin-bottom: 12px;
}

.page-news .data-panel .btn {
  margin-top: 4px;
}

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

.page-news .section-lead {
  font-size: 14px;
  line-height: 1.6;
  color: #5d6b82;
  margin: -6px 0 22px;
}

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sky-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue) 0%, var(--neon-green) 100%);
  z-index: 2;
}

.page-news .news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.page-news .news-card:target {
  border-color: var(--neon-green-deep);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.page-news .news-card-media,
.page-news .news-card-thumb {
  background: var(--deep-space);
  overflow: hidden;
}

.page-news .news-card-media img,
.page-news .news-card-thumb img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}

.page-news .news-index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.page-news .news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-right: 48px;
}

.page-news .news-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--sky-soft);
  color: var(--ink);
}

.page-news .news-category::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sky-blue);
}

.page-news .news-time {
  font-size: 12px;
  color: #667085;
}

.page-news .news-card-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: var(--ink);
}

.page-news .news-card-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #42526b;
}

.page-news .news-card-more {
  margin-top: 6px;
  border-top: 1px dashed var(--sky-soft);
  padding-top: 12px;
}

.page-news .news-card-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-blue);
  transition: color var(--transition);
}

.page-news .news-card-more summary::-webkit-details-marker {
  display: none;
}

.page-news .news-card-more summary::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--neon-green-deep);
  line-height: 1;
}

.page-news .news-card-more[open] summary::before {
  content: "−";
}

.page-news .news-card-more p {
  margin: 10px 0 0;
  padding-left: 10px;
  border-left: 2px solid var(--neon-green-deep);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}

.page-news .feature-card {
  margin-bottom: 24px;
}

.page-news .feature-card .news-card-body {
  padding: 22px 20px 24px;
}

.page-news .feature-card .news-card-title {
  font-size: 28px;
  line-height: 1.15;
}

.page-news .news-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 700px) {
  .page-news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .page-news .page-header::after {
    display: block;
  }
}

@media (min-width: 960px) {
  .page-news .page-header {
    padding: 44px 40px 48px;
  }

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

  .page-news .feature-card .news-card-media {
    height: 100%;
  }

  .page-news .feature-card .news-card-media img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .feature-card .news-card-body {
    padding: 28px 26px;
  }
}

.page-news img {
  max-width: 100%;
  height: auto;
}
