.page-news {
  --color-section-reports: #D32F2F;
  --color-section-reports-bg: rgba(211, 47, 47, 0.06);
  --color-section-tips: #1976D2;
  --color-section-tips-bg: rgba(25, 118, 210, 0.06);
  --color-section-updates: #9C27B0;
  --color-section-updates-bg: rgba(156, 39, 176, 0.06);
  --font-heading: 'Montserrat', 'Exo 2', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  --transition-default: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}
.page-news .breadcrumb {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.page-news .breadcrumb-link {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition-default);
}
.page-news .breadcrumb-link:hover, .page-news .breadcrumb-link:focus {
  color: var(--color-accent);
}
.page-news .breadcrumb-sep {
  color: var(--color-text);
  opacity: 0.5;
}
.page-news .breadcrumb-current {
  font-weight: 600;
}
.page-news__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.page-news__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 0 8px rgba(211, 47, 47, 0.3);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.page-news__desc {
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.85;
}
.page-news__index {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.page-news__index-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  background: var(--color-bg);
  border: 2px solid transparent;
  clip-path: polygon(100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
  transition: var(--transition-default);
}
.page-news__index-item:hover, .page-news__index-item:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.page-news__index-item[aria-selected="true"] {
  border-color: var(--color-accent);
}
.page-news__index-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.page-news__index-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news__index-icon--reports {
  background: var(--color-section-reports);
}
.page-news__index-icon--tips {
  background: var(--color-section-tips);
}
.page-news__index-icon--updates {
  background: var(--color-section-updates);
}
.page-news__index-label {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (max-width: 480px) {
  .page-news__index {
    gap: 0.5rem;
  }
  .page-news__index-item {
    padding: 0.5rem 0.75rem;
  }
  .page-news__index-icon {
    width: 36px;
    height: 36px;
  }
  .page-news__index-label {
    font-size: 0.75rem;
  }
}
.page-news__section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}
.page-news__section--reports {
  background: var(--color-section-reports-bg);
}
.page-news__section--tips {
  background: var(--color-section-tips-bg);
}
.page-news__section--updates {
  background: var(--color-section-updates-bg);
}
.page-news__section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.page-news__section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
.page-news .section-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.25;
  line-height: 1;
}
.page-news__reports-hero {
  margin-bottom: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 20px) 100%, 0 100%);
  overflow: hidden;
}
.page-news__reports-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.page-news__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2.5rem;
}
.page-news__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.25rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-section-reports), transparent);
  border-radius: 2px;
}
.page-news__timeline-item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2rem;
}
.page-news__timeline-marker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.page-news__timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--color-section-reports);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
  flex-shrink: 0;
  position: relative;
  left: -2.25rem;
  z-index: 1;
}
.page-news__timeline-date {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--color-section-reports);
  font-weight: 600;
  left: -2rem;
  position: relative;
}
.page-news__timeline-card {
  margin-left: -0.5rem;
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .page-news__timeline {
    padding-left: 3.5rem;
  }
  .page-news__timeline::before {
    left: 1.75rem;
  }
  .page-news__timeline-dot {
    left: -2.75rem;
    width: 18px;
    height: 18px;
  }
  .page-news__timeline-date {
    left: -2.5rem;
  }
}
.page-news__timeline-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-news__timeline-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.page-news__tips-bg {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.page-news__tips-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.page-news__tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .page-news__tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .page-news__tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-news__tips-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-default);
}
.page-news__tips-card:hover, .page-news__tips-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.page-news__tips-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-section-tips);
}
.page-news__tips-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.page-news .tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--color-bg);
  border: 1px solid var(--color-text);
  color: var(--color-text);
  transition: var(--transition-default);
}
.page-news .tag-accent {
  background: var(--color-section-tips);
  border-color: var(--color-section-tips);
  color: white;
}
.page-news .tag-live {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #1A1A1A;
}
.page-news .tag-upcoming {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}
.page-news__updates-compare {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.page-news__updates-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.page-news__updates-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-news__update-item {
  padding: 1.5rem;
  background: var(--color-bg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: var(--transition-default);
}
.page-news__update-item:hover {
  box-shadow: 0 2px 16px rgba(156, 39, 176, 0.15);
}
.page-news__update-date {
  display: block;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--color-section-updates);
  margin: 0.5rem 0 0.5rem;
}
.page-news__update-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-news__update-details {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.page-news__update-details li {
  margin-bottom: 0.25rem;
}
@media (max-width: 480px) {
  .page-news__title {
    font-size: 1.5rem;
  }
  .page-news__section-title {
    font-size: 1.375rem;
  }
  .page-news .section-number {
    font-size: 2.25rem;
  }
  .page-news__timeline {
    padding-left: 1.75rem;
  }
  .page-news__timeline::before {
    left: 0.75rem;
  }
  .page-news__timeline-dot {
    left: -1.25rem;
    width: 12px;
    height: 12px;
  }
  .page-news__timeline-date {
    left: -1rem;
  }
  .page-news__timeline-card {
    padding: 1rem;
  }
  .page-news__tips-card {
    padding: 1rem;
  }
  .page-news__update-item {
    padding: 1rem;
  }
}
.page-news .card {
  background: var(--color-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition-default);
}
.page-news .card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.page-news .btn {
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-default);
}
.page-news .btn-sm {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}
.page-news .btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  clip-path: polygon(100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 0);
}
.page-news .btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
}
</PAGE_CSS>
