.page-news {
  --news-gold: #D4AF37;
  --news-gold-deep: #B8860B;
  --news-border: rgba(212, 175, 55, 0.2);
  background: var(--background);
  color: var(--text-high);
}

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

.page-news .page-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--news-gold), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.page-news .container,
.page-news .container-wide {
  padding-left: 20px;
  padding-right: 20px;
}

.page-news .news-breadcrumbs-wrap {
  padding-top: 24px;
}

.page-news .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-low);
}

.page-news .breadcrumbs a {
  color: var(--text-low);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-news .breadcrumbs a:hover,
.page-news .breadcrumbs a:focus-visible {
  color: var(--news-gold);
  outline: none;
}

.page-news .breadcrumbs__sep {
  color: rgba(212, 175, 55, 0.5);
}

.page-news .news-hero {
  margin-top: 16px;
}

.page-news .news-hero__frame {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-700), var(--background) 72%);
  border: var(--gold-line);
}

.page-news .news-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.page-news .news-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 7, 18, 0.08), rgba(12, 7, 18, 0.82) 88%);
}

.page-news .news-hero__brand-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 232, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.page-news .news-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px 20px 32px;
}

.page-news .news-hero__content .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.page-news .news-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 14em;
  margin: 0 0 16px;
}

.page-news .news-hero__lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.75);
  max-width: 56ch;
  margin: 0 0 24px;
}

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

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

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}

.page-news .section-head__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-news .section-no {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  color: rgba(212, 175, 55, 0.32);
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.6);
}

.page-news .section-title {
  font-family: var(--font-headline);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 4px 0;
}

.page-news .section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-low);
  margin: 0;
}

.page-news .section-rule {
  height: 1px;
  border: 0;
  margin: 24px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.06) 60%, transparent);
}

.page-news .news-latest__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.page-news .news-item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

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

.page-news .news-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-item__tag {
  padding: 4px 12px;
  font-size: 12px;
  color: var(--news-gold);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  white-space: nowrap;
}

.page-news .news-item__time {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-low);
  white-space: nowrap;
}

.page-news .news-item__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-item__title {
  font-family: var(--font-headline);
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}

.page-news .news-item__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.7);
  margin: 0;
  max-width: 68ch;
}

.page-news .news-item__link {
  justify-self: start;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--news-gold);
  text-decoration: none;
}

.page-news .news-item__link:hover,
.page-news .news-item__link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.page-news .news-cases__banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 22px 24px;
  background: linear-gradient(120deg, rgba(59, 29, 94, 0.55), rgba(12, 7, 18, 0.35));
  border-left: 3px solid var(--news-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-news .news-cases__banner p {
  font-family: var(--font-headline);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: var(--text-high);
}

.page-news .news-cases__banner span {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--news-gold);
}

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

.page-news .news-case {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
}

.page-news .news-case__media {
  overflow: hidden;
  background: var(--primary-900);
}

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

.page-news .news-case__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 22px 22px 20px;
}

.page-news .news-case__meta {
  margin-bottom: 2px;
}

.page-news .news-case__content .eyebrow {
  margin-bottom: 2px;
}

.page-news .news-case__content h3 {
  font-family: var(--font-headline);
  font-size: 21px;
  line-height: 1.35;
  margin: 0;
}

.page-news .news-case__content > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.72);
  margin: 0;
}

.page-news .news-case__details {
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.page-news .news-case__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--news-gold);
  list-style: none;
  transition: color 0.3s var(--ease);
}

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

.page-news .news-case__details summary::after {
  content: "＋";
  font-size: 16px;
  line-height: 1;
}

.page-news .news-case__details[open] summary::after {
  content: "−";
}

.page-news .news-case__details summary:hover,
.page-news .news-case__details summary:focus-visible {
  color: var(--news-gold-deep);
  outline: none;
}

.page-news .news-case__body {
  margin: 0;
  padding: 12px 0 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.68);
}

.page-news .news-rules__visual {
  max-width: 720px;
  margin: 20px 0 24px;
  overflow: hidden;
  background: var(--primary-900);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
}

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

.page-news .news-rules__scroller {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) rgba(26, 11, 46, 0.5);
}

.page-news .news-rule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 280px;
  max-width: 320px;
  gap: 10px;
  padding: 24px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.page-news .news-rule-card__no {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 175, 55, 0.4);
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.7);
}

.page-news .news-rule-card h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  margin: 0;
}

.page-news .news-rule-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.7);
  margin: 0;
}

.page-news .news-rule-card--warn {
  border-left: 3px solid #E8B84B;
  background: linear-gradient(180deg, rgba(232, 184, 75, 0.07), var(--surface));
}

.page-news .news-rule-card--gold {
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), var(--surface));
}

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

.page-news .news-insights__toc {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  background: rgba(26, 11, 46, 0.5);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
}

.page-news .news-insights__toc-title {
  width: 100%;
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--news-gold);
}

.page-news .news-insights__toc a {
  font-size: 13px;
  color: var(--text-low);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.page-news .news-insights__toc a:hover,
.page-news .news-insights__toc a:focus-visible {
  color: var(--news-gold);
  border-color: var(--news-gold);
  outline: none;
}

.page-news .news-insights__articles {
  display: grid;
  gap: 40px;
}

.page-news .news-insight-article {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-insight-article h3 {
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}

.page-news .news-insight-article p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.76);
  margin: 0;
  max-width: 68ch;
}

.page-news .news-insight-article__media {
  margin: 6px 0 2px;
  overflow: hidden;
  background: var(--primary-900);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
}

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

.page-news .news-outro {
  padding-top: 20px;
  padding-bottom: 72px;
}

.page-news .news-outro__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(59, 29, 94, 0.6), rgba(12, 7, 18, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
}

.page-news .news-outro__inner h2 {
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
}

.page-news .news-outro__inner p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-low);
  margin: 0;
  max-width: 64ch;
}

.page-news .news-outro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .page-news .news-hero__frame {
    min-height: 480px;
  }

  .page-news .news-hero__content {
    padding: 40px 48px 48px;
  }

  .page-news .news-hero h1 {
    font-size: 48px;
  }

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

  .page-news .news-case--wide {
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .page-news .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-news .section-no {
    font-size: 68px;
  }

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

  .page-news .news-latest__list {
    margin-top: 8px;
  }

  .page-news .news-item {
    grid-template-columns: 230px 1fr;
    gap: 32px;
    padding: 30px 0;
  }

  .page-news .news-cases__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .page-news .news-case--wide {
    grid-column: span 7;
  }

  .page-news .news-case--side {
    grid-column: span 5;
  }

  .page-news .news-case--third {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .page-news .news-insights__layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .page-news .news-insights__toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
  }

  .page-news .news-insights__toc-title {
    margin-bottom: 8px;
  }

  .page-news .news-insights__toc a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
  }

  .page-news .news-insights__toc a:hover,
  .page-news .news-insights__toc a:focus-visible {
    border-left-color: var(--news-gold);
    background: rgba(212, 175, 55, 0.06);
  }
}
