.page-news {
  --news-line: rgba(10, 61, 110, 0.18);
  --news-grid: rgba(10, 61, 110, 0.06);
  --news-orange: var(--orange);
  background: var(--white);
}

.page-news .news-breadcrumb {
  padding-top: 16px;
  padding-bottom: 0;
}

.page-news .news-breadcrumb .breadcrumb {
  border-bottom: var(--border-w) solid var(--blue-deep);
  padding-bottom: 10px;
}

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

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--news-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-news .news-hero-inner {
  position: relative;
  display: grid;
  gap: var(--gap);
  align-items: center;
}

.page-news .news-hero-copy {
  padding: 8px 0 16px;
}

.page-news .news-hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  margin: 8px 0 16px;
}

.page-news .h1-sub {
  display: block;
  font-size: 20px;
  color: var(--blue-mid);
  margin-top: 6px;
}

.page-news .news-hero-lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  max-width: 60ch;
}

.page-news .news-hero-meta {
  display: inline-block;
  font-size: 13px;
  color: var(--blue-deep);
  background: var(--blue-sky);
  border: var(--border-w) solid var(--blue-deep);
  padding: 8px 12px;
  margin: 16px 0 20px;
  box-shadow: var(--shadow-sm);
}

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

.page-news .news-hero-coord {
  display: none;
}

.page-news .coord-panel {
  position: relative;
  border: var(--border-w-lg) solid var(--blue-deep);
  background: var(--blue-sky);
  width: 100%;
  height: 260px;
  box-shadow: var(--shadow);
}

.page-news .coord-panel::before,
.page-news .coord-panel::after {
  content: "";
  position: absolute;
  background: var(--news-line);
}

.page-news .coord-panel::before {
  left: 12%;
  right: 12%;
  top: 0;
  bottom: 0;
  border-left: 1px dashed var(--blue-mid);
}

.page-news .coord-panel::after {
  top: 28%;
  bottom: 28%;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--blue-mid);
}

.page-news .coord-tick {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--blue-deep);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--blue-deep);
}

.page-news .coord-tick-a {
  top: 24%;
  left: 28%;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.page-news .coord-tick-b {
  top: 48%;
  right: 18%;
  background: var(--chili);
  box-shadow: 0 0 0 2px var(--chili);
}

.page-news .coord-tick-c {
  bottom: 18%;
  left: 38%;
  background: var(--blue-deep);
}

.page-news .coord-label {
  position: absolute;
  font-size: 12px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--blue-deep);
  padding: 4px 8px;
}

.page-news .coord-label-1 {
  top: 14%;
  right: 8%;
}

.page-news .coord-label-2 {
  top: 52%;
  left: 4%;
}

.page-news .coord-label-3 {
  bottom: 8%;
  right: 22%;
}

.page-news .news-latest {
  background: var(--blue-sky);
}

.page-news .latest-feature {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.page-news .latest-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: var(--border-w) solid var(--blue-deep);
}

.page-news .latest-feature-body {
  padding: 24px 16px 28px;
}

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

.page-news .version-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border: 2px solid var(--blue-deep);
  box-shadow: 3px 3px 0 var(--blue-deep);
}

.page-news .version-date {
  font-size: 13px;
  color: var(--blue-mid);
}

.page-news .latest-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.page-news .latest-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-news .latest-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-top: 2px solid var(--news-line);
}

.page-news .latest-points li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--news-line);
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.page-news .latest-points li::before {
  content: "▶";
  position: absolute;
  left: 4px;
  top: 12px;
  color: var(--orange);
  font-size: 12px;
}

.page-news .latest-points strong {
  color: var(--blue-deep);
}

.page-news .latest-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-categories {
  background: var(--white);
}

.page-news .categories-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.page-news .category-card {
  display: block;
  text-decoration: none;
  position: relative;
  border: var(--border-w) solid var(--blue-deep);
  background: var(--white);
  padding: 20px 16px 16px;
  box-shadow: 4px 4px 0 rgba(10, 61, 110, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.page-news .category-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.page-news .category-card:hover,
.page-news .category-card:active {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(10, 61, 110, 0.2);
  background: var(--blue-sky);
}

.page-news .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
}

.page-news .category-card.cat-feature::before {
  background: var(--orange);
}

.page-news .category-card.cat-security::before {
  background: var(--blue-deep);
}

.page-news .category-card.cat-experience::before {
  background: var(--chili);
}

.page-news .category-code {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.page-news .category-card h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--blue-deep);
  margin: 0 0 8px;
}

.page-news .category-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}

.page-news .category-more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
}

.page-news .category-card:hover .category-more {
  color: var(--chili);
}

.page-news .news-security {
  background: var(--blue-dark);
}

.page-news .security-belt {
  display: grid;
  gap: var(--gap);
  align-items: center;
}

.page-news .security-copy {
  padding: 8px 0 0;
}

.page-news .security-copy .kicker {
  color: var(--orange);
}

.page-news .security-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.25;
  color: var(--white);
  margin: 8px 0 14px;
}

.page-news .security-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}

.page-news .security-image {
  border-color: var(--orange);
}

.page-news .security-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .btn-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}

.page-news .btn-light:hover,
.page-news .btn-light:active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.page-news .news-history {
  background: var(--gray-light);
}

.page-news .timeline {
  position: relative;
  margin-top: 28px;
  padding-left: 22px;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--blue-deep);
  opacity: 0.4;
}

.page-news .timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.page-news .timeline-node {
  position: absolute;
  left: -22px;
  top: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-deep);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 0 0 3px var(--gray-light);
}

.page-news .timeline-item:nth-child(1) .timeline-node {
  border-color: var(--orange);
}

.page-news .timeline-item:nth-child(2) .timeline-node {
  border-color: var(--blue-deep);
}

.page-news .timeline-item:nth-child(3) .timeline-node {
  border-color: var(--chili);
}

.page-news .timeline-content {
  padding: 18px 16px;
  background: var(--white);
}

.page-news .timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .timeline-head h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--blue-deep);
  margin: 0;
}

.page-news .timeline-version {
  font-size: 13px;
  color: var(--blue-mid);
  background: var(--blue-sky);
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 12px;
}

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

.page-news .timeline-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  border-bottom: 1px solid var(--news-line);
}

.page-news .timeline-list li:last-child {
  border-bottom: 0;
}

.page-news .timeline-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 7px;
  height: 7px;
  background: var(--blue-deep);
  transform: rotate(45deg);
}

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

.page-news .timeline-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-subscribe {
  background: var(--white);
}

.page-news .subscribe-flex {
  display: grid;
  gap: var(--gap);
  align-items: center;
}

.page-news .subscribe-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  color: var(--blue-deep);
  margin: 8px 0 14px;
}

.page-news .subscribe-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news .subscribe-steps {
  list-style: none;
  margin: 18px 0 16px;
  padding: 0;
}

.page-news .subscribe-steps li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  padding: 8px 0 8px 52px;
  position: relative;
  border-bottom: 1px solid var(--news-line);
}

.page-news .subscribe-steps li:last-child {
  border-bottom: 0;
}

.page-news .step-num {
  position: absolute;
  left: 0;
  top: 7px;
  width: 38px;
  height: 24px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-deep);
}

.page-news .subscribe-command {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  background: var(--blue-dark);
  border: 2px solid var(--blue-deep);
  padding: 12px 14px;
  margin-top: 8px;
  box-shadow: 3px 3px 0 rgba(10, 61, 110, 0.25);
}

.page-news .subscribe-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-news .news-hero-copy h1 {
    font-size: 42px;
  }

  .page-news .h1-sub {
    display: inline;
    font-size: 30px;
  }

  .page-news .news-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-news .news-hero-coord {
    display: block;
  }

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

  .page-news .latest-feature-image img {
    height: 100%;
    border-bottom: 0;
    border-right: var(--border-w) solid var(--blue-deep);
  }

  .page-news .latest-feature-body {
    padding: 28px 24px;
  }

  .page-news .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-news .security-belt {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-news .security-copy h2 {
    font-size: 32px;
  }

  .page-news .timeline {
    padding-left: 36px;
  }

  .page-news .timeline::before {
    left: 11px;
  }

  .page-news .timeline-node {
    left: -36px;
    width: 24px;
    height: 24px;
  }

  .page-news .timeline-content {
    padding: 24px 28px;
  }

  .page-news .timeline-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
  }

  .page-news .subscribe-flex {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-news .subscribe-copy h2 {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  .page-news .latest-feature-body {
    padding: 40px 36px;
  }

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

  .page-news .security-belt {
    gap: 48px;
    padding: 8px 0;
  }

  .page-news .security-copy p {
    font-size: 16px;
  }

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

  .page-news .subscribe-visual img {
    max-width: 360px;
    margin-left: auto;
  }
}
