.page-news {
  --page-primary: #0A1A2F;
  --page-bg: #F6F5F0;
  --page-accent: #C9A86A;
  --page-accent-soft: rgba(201, 168, 106, 0.12);
  --page-line: #E5E2DA;
  --page-text: #1F2933;
  --page-muted: #6B7280;
  --page-cyan: #00E5CC;
  --page-cta: #FF7A00;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-news a {
  transition: color 0.25s var(--ease);
}

.page-news img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-news .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.page-news .breadcrumb {
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.page-news .breadcrumb-link {
  color: var(--page-muted);
  text-decoration: none;
  font-size: 14px;
}

.page-news .breadcrumb-link:hover {
  color: var(--page-accent);
}

.page-news .breadcrumb-sep {
  color: var(--page-line);
  font-size: 14px;
  margin: 0 4px;
}

.page-news .breadcrumb-item {
  color: var(--page-text);
  font-size: 14px;
  font-weight: 600;
}

.page-news .page-header {
  margin: 40px 0 48px;
  max-width: 780px;
}

.page-news .page-title {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--page-primary);
  letter-spacing: -0.02em;
}

.page-news .page-lead {
  font-size: 16px;
  color: var(--page-muted);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--page-accent);
}

.page-news .update-status-panel {
  background: var(--page-primary);
  border: 1px solid var(--page-accent);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 72px;
}

.page-news .update-status-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-cyan));
}

.page-news .status-panel-content {
  position: relative;
  z-index: 1;
}

.page-news .status-panel-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--page-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-news .status-panel-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.3;
}

.page-news .status-version {
  font-family: var(--font-mono);
  color: var(--page-cyan);
}

.page-news .status-meta {
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.page-news .status-meta-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.page-news .status-meta-row dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.page-news .status-meta-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

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

.page-news .status-panel-actions .btn-primary {
  background: var(--page-cta);
  color: #fff;
  border-color: var(--page-cta);
}

.page-news .status-panel-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-news .status-panel-image {
  margin: 0;
}

.page-news .status-panel-image img {
  width: 100%;
  border-radius: 8px;
}

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

.page-news .section-heading {
  margin-bottom: 40px;
  max-width: 680px;
}

.page-news .section-overline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--page-accent);
  margin: 0 0 8px;
}

.page-news .section-overline::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--page-accent);
  margin-right: 10px;
  vertical-align: middle;
}

.page-news .section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--page-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.page-news .section-desc {
  font-size: 15px;
  color: var(--page-muted);
  margin: 0;
}

.page-news .timeline {
  position: relative;
  margin-top: 48px;
}

.page-news .timeline-axis {
  position: absolute;
  left: 9px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--page-line);
}

.page-news .timeline-axis-svg {
  display: block;
  width: 2px;
  height: 100%;
}

.page-news .timeline-list {
  position: relative;
}

.page-news .timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

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

.page-news .timeline-node {
  position: absolute;
  left: 3px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 3px solid var(--page-cyan);
  box-shadow: 0 0 0 2px var(--page-cyan);
  z-index: 1;
}

.page-news .timeline-item--featured .timeline-node {
  border-color: var(--page-accent);
  box-shadow: 0 0 0 2px var(--page-accent);
}

.page-news .timeline-card {
  background: #fff;
  border: 1px solid var(--page-line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.page-news .timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #FCFBF8;
}

.page-news .timeline-item--featured .timeline-card {
  border-color: var(--page-accent);
  box-shadow: 0 0 0 1px var(--page-accent), var(--shadow-sm);
}

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

.page-news .timeline-version {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--page-muted);
  margin-left: auto;
}

.page-news .timeline-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--page-primary);
  margin: 0 0 10px;
  line-height: 1.4;
}

.page-news .timeline-summary {
  font-size: 15px;
  color: var(--page-text);
  margin: 0 0 16px;
}

.page-news .timeline-image {
  margin: 0 0 16px;
}

.page-news .timeline-image img {
  width: 100%;
  border-radius: 8px;
}

.page-news .timeline-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--page-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--page-accent);
  padding-bottom: 2px;
}

.page-news .timeline-link:hover {
  color: var(--page-accent);
}

.page-news .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1.4;
}

.page-news .tag--update {
  background: var(--page-accent-soft);
  color: var(--page-primary);
  border-color: rgba(201, 168, 106, 0.35);
}

.page-news .tag--case {
  background: rgba(122, 92, 255, 0.1);
  color: #5B3CD8;
  border-color: rgba(122, 92, 255, 0.2);
}

.page-news .tag--directory {
  background: rgba(0, 229, 204, 0.1);
  color: #0B8A7C;
  border-color: rgba(0, 229, 204, 0.25);
}

.page-news .tag--insight {
  background: rgba(255, 122, 0, 0.1);
  color: #D45500;
  border-color: rgba(255, 122, 0, 0.25);
}

.page-news .tag--highlight {
  background: var(--page-primary);
  color: var(--page-accent);
}

.page-news .case-section {
  background: var(--page-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0;
  margin-bottom: 88px;
}

.page-news .case-section .section-overline {
  color: var(--page-accent);
}

.page-news .case-section .section-title {
  color: #fff;
}

.page-news .case-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.page-news .case-section .section-overline::before {
  background: var(--page-cyan);
}

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

.page-news .case-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-news .case-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-news .case-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.page-news .case-industry {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
}

.page-news .case-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.page-news .case-summary {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  flex: 1;
}

.page-news .case-image {
  margin: 0 0 16px;
}

.page-news .case-image img {
  width: 100%;
  border-radius: 8px;
}

.page-news .case-section .case-card .tag--case {
  background: rgba(122, 92, 255, 0.2);
  color: #C9B8FF;
  border-color: rgba(122, 92, 255, 0.4);
}

.page-news .case-card .timeline-link {
  color: var(--page-accent);
  border-bottom-color: rgba(201, 168, 106, 0.5);
}

.page-news .case-card .timeline-link:hover {
  color: #fff;
  border-bottom-color: var(--page-accent);
}

.page-news .directory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--page-line);
  border: 1px solid var(--page-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .directory-card {
  background: #fff;
  padding: 24px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease);
}

.page-news .directory-card:hover {
  background: #FAF8F3;
}

.page-news .directory-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--page-accent);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.page-news .directory-title {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--page-primary);
  line-height: 1.4;
}

.page-news .directory-desc {
  font-size: 13px;
  color: var(--page-muted);
  margin: 0;
}

.page-news .directory-note {
  font-size: 14px;
  color: var(--page-muted);
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--page-accent);
}

.page-news .insight-list {
  display: grid;
  gap: 48px;
}

.page-news .insight-item {
  display: grid;
  gap: 24px;
}

.page-news .insight-image {
  margin: 0;
}

.page-news .insight-image img {
  width: 100%;
  border-radius: var(--radius);
}

.page-news .insight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news .insight-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--page-muted);
  letter-spacing: 0.06em;
}

.page-news .insight-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--page-primary);
  margin: 0 0 12px;
  line-height: 1.4;
}

.page-news .insight-summary {
  font-size: 15px;
  color: var(--page-text);
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .page-news .page-title {
    font-size: 48px;
  }

  .page-news .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .directory-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .insight-item:first-child {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .page-news .insight-item + .insight-item {
    grid-template-columns: 1fr;
    padding-left: 96px;
  }
}

@media (min-width: 960px) {
  .page-news .update-status-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 48px;
  }

  .page-news .timeline-axis {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-news .timeline-item {
    width: calc(50% - 48px);
    padding-left: 0;
  }

  .page-news .timeline-item:nth-child(odd) {
    margin-right: auto;
  }

  .page-news .timeline-item:nth-child(even) {
    margin-left: auto;
  }

  .page-news .timeline-node {
    left: auto;
    right: -48px;
  }

  .page-news .timeline-item:nth-child(even) .timeline-node {
    right: auto;
    left: -48px;
  }

  .page-news .timeline-card {
    padding: 32px;
  }

  .page-news .section-title {
    font-size: 32px;
  }
}
