.page-news {
  --news-bg-panel: rgba(10, 20, 40, 0.55);
  --news-border-line: rgba(255, 255, 255, 0.08);
  --news-purple-glow: rgba(122, 0, 255, 0.35);
  --news-green-glow: rgba(0, 255, 136, 0.25);
  --news-gold-line: rgba(255, 215, 0, 0.55);
  --news-card-hover-bg: rgba(255, 255, 255, 0.09);
  color: var(--color-cloud-white);
  background: transparent;
  overflow-x: clip;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-slate-blue);
}

.page-news .breadcrumb-link {
  color: var(--color-slate-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.page-news .breadcrumb-sep {
  color: rgba(148, 163, 184, 0.55);
}

.page-news .breadcrumb-current {
  color: var(--color-cloud-white);
  font-weight: 500;
}

.page-news .page-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--news-border-line);
  position: relative;
}

.page-news .page-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 132px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric-purple), var(--color-neon-green));
  border-radius: 2px;
}

.page-news .page-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.12;
  position: relative;
  display: inline-block;
}

.page-news .page-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 38px;
  margin-right: 14px;
  background: linear-gradient(180deg, var(--color-electric-purple), var(--color-neon-green));
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
  vertical-align: -6px;
}

.page-news .news-page-desc {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-slate-blue);
}

.page-news .news-header-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-news .news-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--news-border-line);
  color: var(--color-cloud-white);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.page-news .news-stat-item .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon-green);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.7);
}

.page-news .page-news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 8px;
  padding-bottom: 48px;
}

.page-news .news-category-index {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: var(--news-bg-panel);
  border: 1px solid var(--news-border-line);
  position: sticky;
  top: 84px;
  z-index: 5;
}

.page-news .news-index-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-slate-blue);
}

.page-news .news-index-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-cloud-white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-news .news-index-item:hover,
.page-news .news-index-item:focus-visible {
  background: var(--news-card-hover-bg);
  transform: translateX(4px);
  outline: none;
}

.page-news .news-index-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--idx-mark);
  box-shadow: 0 0 6px var(--idx-mark);
  flex-shrink: 0;
}

.page-news .news-index-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--news-border-line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--color-slate-blue);
  font-family: var(--font-body);
  line-height: 1.5;
}

.page-news .news-index-note-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 5px;
  flex-shrink: 0;
}

.page-news .news-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.page-news .section {
  position: relative;
}

.page-news .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.page-news .section-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-left: 14px;
  position: relative;
}

.page-news .section-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: linear-gradient(180deg, var(--color-electric-purple), var(--color-neon-green));
  clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
}

.page-news .section-heading-note {
  font-size: 13px;
  color: var(--color-slate-blue);
  font-family: var(--font-body);
}

.page-news .news-feature-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .news-feature-card:hover,
.page-news .news-feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.page-news .news-feature-media {
  position: relative;
  border-bottom: 3px solid var(--news-gold-line);
  overflow: hidden;
}

.page-news .news-feature-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.page-news .news-feature-card:hover .news-feature-img {
  transform: scale(1.02);
}

.page-news .news-feature-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-midnight);
  background: linear-gradient(135deg, var(--color-neon-green), #00CC6A);
  box-shadow: 0 4px 16px var(--news-green-glow);
}

.page-news .news-feature-content {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.page-news .news-feature-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.page-news .news-feature-excerpt {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-slate-blue);
  max-width: 96%;
}

.page-news .news-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--color-slate-blue);
}

.page-news .news-meta-tag {
  color: var(--color-neon-green);
  font-weight: 500;
}

.page-news .news-feature-content .btn {
  margin-top: 4px;
}

.page-news .news-updates-wrap,
.page-news .news-tips-grid,
.page-news .news-categories-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-news .news-updates-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .news-update-item {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-news .news-update-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-electric-purple), var(--color-neon-green));
  transition: width 0.35s ease;
}

.page-news .news-update-item:hover::after,
.page-news .news-update-item:focus-within::after {
  width: 100%;
}

.page-news .news-update-item:hover,
.page-news .news-update-item:focus-within {
  border-color: rgba(0, 255, 136, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.page-news .news-update-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(122, 0, 255, 0.16);
  border: 1px solid rgba(122, 0, 255, 0.4);
  color: #C9A8FF;
}

.page-news .news-update-item:nth-child(1) .news-update-badge,
.page-news .news-update-item:nth-child(5) .news-update-badge {
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.35);
  color: var(--color-neon-green);
}

.page-news .news-update-item:nth-child(3) .news-update-badge {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--color-slate-blue);
}

.page-news .news-update-item:nth-child(4) .news-update-badge {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  color: var(--color-gold);
}

.page-news .news-update-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.page-news .news-update-desc {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-slate-blue);
}

.page-news .news-update-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neon-green);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.page-news .news-update-link:hover,
.page-news .news-update-link:focus-visible {
  gap: 12px;
  color: var(--color-cloud-white);
  outline: none;
}

.page-news .news-updates-figure {
  margin: 4px 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
}

.page-news .news-updates-img,
.page-news .news-tips-img,
.page-news .news-categories-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-updates-figure figcaption,
.page-news .news-tips-figure figcaption {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-slate-blue);
  border-top: 1px solid var(--news-border-line);
}

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

.page-news .news-tip-card {
  padding: 22px 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.page-news .news-tip-card:hover,
.page-news .news-tip-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.page-news .news-tip-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-neon-green);
  opacity: 0.85;
  margin-bottom: 12px;
}

.page-news .news-tip-card:nth-child(2) .news-tip-number {
  -webkit-text-stroke: 1px var(--color-electric-purple);
}

.page-news .news-tip-card:nth-child(3) .news-tip-number {
  -webkit-text-stroke: 1px var(--color-gold);
}

.page-news .news-tip-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-news .news-tip-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-slate-blue);
}

.page-news .news-tip-steps li::marker {
  color: var(--color-neon-green);
}

.page-news .news-tip-card:nth-child(2) .news-tip-steps li::marker {
  color: var(--color-electric-purple);
}

.page-news .news-tip-card:nth-child(3) .news-tip-steps li::marker {
  color: var(--color-gold);
}

.page-news .news-tips-figure {
  margin: 10px 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
}

.page-news .news-categories-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-news .news-categories-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
}

.page-news .news-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-border-line);
  background: var(--news-bg-panel);
}

.page-news .news-cat-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
}

.page-news .news-cat-tag-purple {
  background: rgba(122, 0, 255, 0.13);
  border-color: rgba(122, 0, 255, 0.45);
  color: #C9A8FF;
}

.page-news .news-cat-tag-green {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.4);
  color: var(--color-neon-green);
}

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

.page-news .news-cat-tag-slate {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--color-slate-blue);
}

.page-news .news-cat-desc {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-slate-blue);
}

.page-news .news-more-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-border-line);
  background: linear-gradient(135deg, rgba(122, 0, 255, 0.08), rgba(0, 255, 136, 0.05)), var(--news-bg-panel);
}

.page-news .news-more-text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.page-news .news-more-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-back-top {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--news-border-line);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-slate-blue);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-back-top:hover,
.page-news .news-back-top:focus-visible {
  color: var(--color-neon-green);
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
  outline: none;
}

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

  .page-news .news-updates-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-news .news-updates-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
    gap: 20px;
  }

  .page-news .news-tips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .page-news .news-tips-figure {
    margin-top: 16px;
  }

  .page-news .news-categories-wrap {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
  }

  .page-news .news-feature-card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .news-feature-media {
    flex: 1 1 46%;
    border-bottom: none;
    border-right: 3px solid var(--news-gold-line);
  }

  .page-news .news-feature-img {
    height: 100%;
    min-height: 320px;
    object-fit: cover;
  }

  .page-news .news-feature-content {
    flex: 1 1 54%;
    padding: 32px 30px;
    justify-content: center;
  }

  .page-news .news-feature-title {
    font-size: 28px;
  }
}

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

  .page-news .news-category-index {
    padding: 22px 20px;
  }

  .page-news .news-main-content {
    gap: 56px;
  }

  .page-news .news-feature-title {
    font-size: 31px;
  }

  .page-news .news-updates-list {
    gap: 18px;
  }
}

.page-news {
  --idx-mark: none;
}
