.page-news {
  background-color: var(--wp-bg-light);
  overflow-x: clip;
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, var(--wp-bg-dark) 0%, #101432 52%, #1A2147 100%);
  padding: 44px 0 62px;
  color: var(--wp-white);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -64px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--wp-primary);
  opacity: 0.28;
  filter: blur(58px);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -140px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--wp-accent);
  opacity: 0.18;
  filter: blur(52px);
  pointer-events: none;
}

.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero .breadcrumbs {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-hero .breadcrumbs a:hover {
  color: var(--wp-secondary);
}

.page-news .news-hero .breadcrumbs [aria-current="page"] {
  color: var(--wp-white);
}

.page-news .news-hero .eyebrow {
  color: var(--wp-secondary);
}

.page-news .news-hero h1 {
  margin: 10px 0 18px;
  max-width: 760px;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.16;
}

.page-news .news-hero .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 64px;
}

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

.page-news .news-section-head h2 {
  margin: 6px 0 8px;
}

.page-news .news-section-desc {
  margin: 0;
  color: var(--wp-gray);
  line-height: 1.65;
}

.page-news .filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  background: var(--wp-white);
  border-radius: var(--wp-radius-sm);
  box-shadow: var(--wp-shadow-card);
  padding: 14px 16px;
  margin-bottom: 24px;
}

.page-news .filter-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp-gray);
}

.page-news .filter-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .filter-capsule {
  appearance: none;
  border: 1px solid var(--wp-border);
  background: var(--wp-bg-light);
  color: var(--wp-dark-text);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-news .filter-capsule:hover {
  border-color: var(--wp-primary);
  transform: translateY(-1px);
}

.page-news .filter-capsule.is-active {
  background: var(--wp-primary);
  border-color: var(--wp-primary);
  color: var(--wp-white);
}

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

.page-news .news-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  top: -12%;
  left: -20%;
  width: 28%;
  height: 140%;
  background: linear-gradient(105deg, transparent, rgba(91, 108, 255, 0.07), rgba(0, 229, 255, 0.05), transparent);
  transform: skewX(-14deg) translateX(-320%);
  transition: transform 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.page-news .news-card:hover::before {
  transform: skewX(-14deg) translateX(300%);
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wp-shadow-pop);
}

.page-news .news-thumb {
  position: relative;
  overflow: hidden;
  background: var(--wp-bg-dark);
}

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

.page-news .news-body {
  position: relative;
  z-index: 1;
  padding: 20px 20px 24px;
}

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

.page-news .news-meta time {
  font-family: var(--wp-font-mono);
  font-size: 13px;
  color: var(--wp-gray);
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.page-news .news-tag.is-update {
  background: rgba(91, 108, 255, 0.14);
  color: var(--wp-primary-dark);
}

.page-news .news-tag.is-event {
  background: rgba(255, 122, 0, 0.14);
  color: #D25F00;
}

.page-news .news-tag.is-announce {
  background: rgba(0, 229, 255, 0.16);
  color: #007A8C;
}

.page-news .news-tag.is-help {
  background: rgba(107, 114, 128, 0.14);
  color: var(--wp-gray);
}

.page-news .news-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.page-news .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-title a:hover {
  color: var(--wp-primary);
}

.page-news .news-excerpt {
  margin: 0 0 16px;
  color: var(--wp-gray);
  line-height: 1.7;
}

.page-news .news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wp-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-more:hover {
  color: var(--wp-accent);
}

.page-news .news-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-news .sidebar-card {
  position: relative;
  overflow: hidden;
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow-card);
  padding: 24px 20px;
}

.page-news .sidebar-title {
  margin: 0 0 18px;
  font-size: 18px;
  padding-bottom: 12px;
  position: relative;
}

.page-news .sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--wp-accent);
}

.page-news .hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .hot-tags a {
  display: inline-block;
  padding: 7px 12px;
  background: var(--wp-bg-light);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--wp-dark-text);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-news .hot-tags a:hover {
  border-color: var(--wp-primary);
  background: rgba(91, 108, 255, 0.08);
  color: var(--wp-primary-dark);
}

.page-news .subscribe-panel {
  background: linear-gradient(135deg, var(--wp-bg-dark), #141A3E);
  color: var(--wp-white);
}

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

.page-news .subscribe-panel .sidebar-title::after {
  background: var(--wp-secondary);
}

.page-news .subscribe-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.page-news .sidebar-links li + li {
  border-top: 1px solid var(--wp-bg-light);
}

.page-news .sidebar-links a {
  display: block;
  padding: 12px 0;
  color: var(--wp-dark-text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .sidebar-links a:hover {
  color: var(--wp-primary);
  padding-left: 8px;
}

.page-news .news-subscribe-block {
  background: linear-gradient(120deg, var(--wp-bg-dark), #161B42);
  color: var(--wp-white);
  border-top: 3px solid var(--wp-primary);
}

.page-news .subscribe-inner {
  display: grid;
  gap: 24px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.page-news .subscribe-copy .eyebrow {
  color: var(--wp-accent);
}

.page-news .subscribe-copy h2 {
  margin: 8px 0 12px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--wp-white);
}

.page-news .subscribe-copy p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 56px 0 78px;
  }

  .page-news .news-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
  }

  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 80px;
  }

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

  .page-news .news-card {
    display: flex;
    align-items: stretch;
  }

  .page-news .news-thumb.media-frame {
    flex: 0 0 300px;
    aspect-ratio: auto;
    min-height: 220px;
  }

  .page-news .news-thumb img {
    height: 100%;
  }

  .page-news .news-body {
    padding: 28px 32px 30px;
  }

  .page-news .news-card-text .news-body {
    padding: 30px 34px;
  }

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

  .page-news .sidebar-card {
    padding: 28px 24px;
  }

  .page-news .subscribe-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px 48px;
  }

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