.page-news {
  --news-panel-bg: linear-gradient(145deg, #1A1A24 0%, #14141C 100%);
  --news-card-border: #2A2A3A;
  --news-radius-card: 24px;
  --news-glow-purple: rgba(177, 75, 255, 0.35);
  --news-glow-blue: rgba(0, 229, 255, 0.25);
  --news-glow-red: rgba(255, 59, 92, 0.3);
  background-color: #0B0B0F;
  color: #F5F5FA;
  min-height: 100vh;
}

.page-news .breadcrumb {
  margin-bottom: 28px;
}

.page-news .news-masthead {
  padding-top: 56px;
  padding-bottom: 40px;
}

.page-news .news-masthead-grid {
  display: grid;
  gap: 32px;
  margin-top: 36px;
}

.page-news .news-masthead-copy .section-kicker {
  color: var(--blue);
}

.page-news .news-masthead-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  color: #F5F5FA;
}

.page-news .news-masthead-intro {
  color: #8A8A9E;
  font-size: 16px;
  line-height: 1.9;
  max-width: 62ch;
  margin-bottom: 28px;
}

.page-news .news-masthead-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.page-news .news-text-link {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  font-size: 14px;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-text-link:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.page-news .news-text-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.page-news .news-masthead-panel {
  background: var(--news-panel-bg);
  border: 1px solid var(--news-card-border);
  border-radius: var(--news-radius-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.page-news .news-masthead-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(177, 75, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.page-news .news-panel-title {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--purple);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.page-news .news-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.page-news .news-panel-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--news-card-border);
  border-radius: 16px;
  padding: 16px;
  margin: 0;
}

.page-news .news-panel-stat dt {
  color: #8A8A9E;
  font-size: 12px;
  margin-bottom: 8px;
}

.page-news .news-panel-stat dd {
  font-family: var(--font-head);
  font-size: 22px;
  color: #F5F5FA;
  margin: 0;
  line-height: 1.2;
}

.page-news .news-section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .news-section-heading .section-kicker {
  color: var(--purple);
}

.page-news .news-section-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  color: #F5F5FA;
  margin: 0;
}

.page-news .news-section-heading > p {
  color: #8A8A9E;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 72ch;
}

.page-news .news-latest-section {
  padding-top: 16px;
  scroll-margin-top: 120px;
}

.page-news .news-feature-card {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #1A1A24 0%, #101018 100%);
  border: 1px solid rgba(177, 75, 255, 0.25);
  border-radius: var(--news-radius-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.page-news .news-feature-media {
  position: relative;
  overflow: hidden;
}

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

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

.page-news .news-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.page-news .news-time {
  color: #8A8A9E;
  font-size: 13px;
}

.page-news .news-feature-body h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  margin: 0 0 14px;
  color: #F5F5FA;
}

.page-news .news-feature-body p {
  color: #8A8A9E;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.page-news .tag-purple {
  color: var(--purple);
  background: rgba(177, 75, 255, 0.12);
  border: 1px solid rgba(177, 75, 255, 0.4);
}

.page-news .tag-blue {
  color: var(--blue);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.page-news .tag-red {
  color: var(--red);
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.4);
}

.page-news .tag-neutral {
  color: #B7B7C9;
  background: rgba(138, 138, 158, 0.12);
  border: 1px solid rgba(138, 138, 158, 0.35);
}

.page-news .news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-read-more:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.page-news .news-read-more:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.page-news .news-filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-news .news-filter-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-news .news-filter-label {
  cursor: pointer;
  padding: 8px 18px;
  border: 1px solid var(--news-card-border);
  border-radius: 999px;
  color: #8A8A9E;
  font-size: 13px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-news #cat-all:checked ~ .news-filter-labels label[for="cat-all"],
.page-news #cat-feature:checked ~ .news-filter-labels label[for="cat-feature"],
.page-news #cat-category:checked ~ .news-filter-labels label[for="cat-category"],
.page-news #cat-ops:checked ~ .news-filter-labels label[for="cat-ops"],
.page-news #cat-industry:checked ~ .news-filter-labels label[for="cat-industry"] {
  color: #0B0B0F;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-color: transparent;
  box-shadow: 0 0 18px rgba(177, 75, 255, 0.35);
  font-weight: 700;
}

.page-news #cat-all:focus-visible ~ .news-filter-labels label[for="cat-all"],
.page-news #cat-feature:focus-visible ~ .news-filter-labels label[for="cat-feature"],
.page-news #cat-category:focus-visible ~ .news-filter-labels label[for="cat-category"],
.page-news #cat-ops:focus-visible ~ .news-filter-labels label[for="cat-ops"],
.page-news #cat-industry:focus-visible ~ .news-filter-labels label[for="cat-industry"] {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.page-news #cat-all:checked ~ .news-grid article {
  display: flex;
}

.page-news #cat-feature:checked ~ .news-grid article:not([data-cat="feature"]),
.page-news #cat-category:checked ~ .news-grid article:not([data-cat="category"]),
.page-news #cat-ops:checked ~ .news-grid article:not([data-cat="ops"]),
.page-news #cat-industry:checked ~ .news-grid article:not([data-cat="industry"]) {
  display: none;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}

.page-news .news-card {
  background: #1A1A24;
  border: 1px solid var(--news-card-border);
  border-radius: var(--news-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-news .news-card:hover {
  border-color: rgba(177, 75, 255, 0.55);
  box-shadow: 0 0 28px rgba(177, 75, 255, 0.12);
  transform: translateY(-2px);
}

.page-news .news-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.page-news .news-card-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: #F5F5FA;
}

.page-news .news-card-body p {
  color: #8A8A9E;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.page-news .news-card-plain {
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.04) 0%, transparent 55%),
    #1A1A24;
  justify-content: center;
}

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

.page-news .news-details {
  margin-top: 4px;
}

.page-news .news-details summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 13px;
  border-bottom: 1px dotted rgba(0, 229, 255, 0.45);
  display: inline-block;
  list-style: none;
}

.page-news .news-details summary::-webkit-details-marker {
  display: none;
}

.page-news .news-details p {
  color: #8A8A9E;
  font-size: 14px;
  line-height: 1.75;
  margin: 12px 0 0;
}

.page-news .news-history-section {
  margin-top: 72px;
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(177, 75, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 75%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0B0B0F 0%, #12121A 100%);
}

.page-news .news-timeline-rail {
  position: relative;
  max-width: 900px;
}

.page-news .news-timeline-svg {
  position: absolute;
  left: 27px;
  top: 0;
  width: 2px;
  height: 100%;
  display: block;
  pointer-events: none;
}

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

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

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

.page-news .news-timeline .timeline-marker {
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 2;
  min-width: 56px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #12121A;
  border: 1px solid var(--purple);
  box-shadow: 0 0 16px rgba(177, 75, 255, 0.35);
  color: var(--purple);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}

.page-news .news-timeline .timeline-content h3 {
  font-family: var(--font-head);
  font-size: 19px;
  color: #F5F5FA;
  margin: 0 0 8px;
}

.page-news .news-timeline .timeline-content p {
  color: #8A8A9E;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 54ch;
}

.page-news .news-category-section {
  padding: 64px 0;
}

.page-news .news-category-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-news .news-category-copy > p {
  color: #8A8A9E;
  font-size: 15px;
  line-height: 1.9;
  margin: 16px 0 0;
  max-width: 58ch;
}

.page-news .news-category-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.page-news .news-category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--news-card-border);
}

.page-news .news-category-item:first-child {
  border-top: 1px solid var(--news-card-border);
}

.page-news .news-category-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  min-width: 96px;
}

.page-news .news-category-detail {
  color: #8A8A9E;
  font-size: 14px;
  line-height: 1.5;
}

.page-news .news-category-note {
  color: #8A8A9E;
  font-size: 14px;
  line-height: 1.9;
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid rgba(177, 75, 255, 0.6);
}

.page-news .news-category-visual {
  background:
    radial-gradient(circle at 25% 25%, rgba(177, 75, 255, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(0, 229, 255, 0.12) 0%, transparent 55%),
    #1A1A24;
  border: 1px solid var(--news-card-border);
  border-radius: var(--news-radius-card);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 36px 24px;
}

.page-news .news-tags-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.page-news .news-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid;
}

.page-news .news-tag-pill-ko {
  color: var(--purple);
  border-color: rgba(177, 75, 255, 0.55);
  box-shadow: 0 0 22px rgba(177, 75, 255, 0.25);
  background: rgba(177, 75, 255, 0.08);
}

.page-news .news-tag-pill-ww {
  color: var(--blue);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.06);
}

.page-news .news-tag-pill-tw {
  color: var(--red);
  border-color: rgba(255, 59, 92, 0.5);
  box-shadow: 0 0 22px rgba(255, 59, 92, 0.22);
  background: rgba(255, 59, 92, 0.07);
}

.page-news .news-tags-note {
  color: #8A8A9E;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0;
}

.page-news .news-cta-bar {
  margin-top: 48px;
  margin-bottom: 64px;
  padding: 34px 30px;
  border-radius: var(--news-radius-card);
  background: linear-gradient(120deg, rgba(177, 75, 255, 0.14) 0%, rgba(0, 229, 255, 0.08) 100%), #14141C;
  border: 1px solid rgba(177, 75, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-news .news-cta-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: #F5F5FA;
  margin: 0 0 6px;
}

.page-news .news-cta-bar p {
  color: #8A8A9E;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.page-news .news-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-news .btn-cta {
  box-shadow: 0 0 18px rgba(177, 75, 255, 0.25);
}

@media (min-width: 768px) {
  .page-news .news-masthead {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .page-news .news-masthead-grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
  }

  .page-news .news-feature-card {
    grid-template-columns: 6fr 4fr;
  }

  .page-news .news-feature-body {
    padding: 36px 32px;
  }

  .page-news .news-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-news .news-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 5fr 7fr;
  }

  .page-news .news-card-wide img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .page-news .news-card-wide .news-card-body {
    padding: 32px 36px;
    justify-content: center;
  }

  .page-news .news-category-layout {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }

  .page-news .news-cta-bar {
    padding: 40px 36px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-timeline .timeline-item {
    width: 50%;
    padding: 0 48px 44px 0;
  }

  .page-news .news-timeline .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 44px 48px;
  }

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

  .page-news .news-timeline .timeline-marker {
    left: auto;
    right: -29px;
  }

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

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