.news-page {
  --news-ink: #1a2430;
  --news-gold: #d4a017;
  background:
    radial-gradient(900px 360px at 8% -8%, rgba(212, 160, 23, 0.14), transparent 55%),
    linear-gradient(180deg, #fbf7ee 0%, #f4f1ea 100%);
  color: var(--news-ink);
}
.news-hero {
  padding: 2.4rem 0 1.2rem;
}
.news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #8a6a12;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.news-hero h1 {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}
.news-feature,
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(26, 36, 48, 0.08);
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 16px 40px rgba(26, 36, 48, 0.08);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-feature:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(26, 36, 48, 0.14);
  color: inherit;
}
.news-feature-body,
.news-card-body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.news-badge {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(26, 36, 48, 0.08);
  color: #334155;
}
.news-badge.is-pin { background: #dc2626; color: #fff; }
.news-badge.is-tour { background: #1a2430; color: #ffe9a8; }
.news-feature h2,
.news-card h3 {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.news-feature h2 { font-size: 1.55rem; }
.news-card h3 { font-size: 1.12rem; }
.news-excerpt {
  margin: 0 0 16px;
  color: #5b6674;
  line-height: 1.7;
  flex: 1;
}
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 700;
}
.news-meta-eng { display: inline-flex; gap: 12px; }
.news-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.news-side { display: flex; flex-direction: column; gap: 18px; }
.news-empty {
  padding: 4rem 1rem;
  text-align: center;
  color: #6b7280;
}

.notice-page { background: linear-gradient(180deg, #fbf7ee, #fff); }
.notice-wrap { max-width: 820px; margin: 0 auto; }
.notice-card {
  border-radius: 24px;
  border: 1px solid rgba(26, 36, 48, 0.08);
  background: #fffaf2;
  box-shadow: 0 18px 44px rgba(26, 36, 48, 0.08);
  padding: 28px 28px 22px;
}
.notice-content { font-size: 1.05rem; line-height: 1.9; color: #2a3340; }
.notice-content a { color: #9a7208; font-weight: 800; word-break: break-all; }
.notice-player {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.16);
  color: #3d2800;
  font-weight: 800;
  text-decoration: none !important;
}
.notice-player:hover { background: rgba(212, 160, 23, 0.28); color: #2a1b00; }

.ms-engagement { margin-top: 8px; }
.ms-comments-panel {
  background: #fff;
  border: 1px solid rgba(26, 36, 48, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
}

@media (max-width: 900px) {
  .news-grid, .news-list { grid-template-columns: 1fr; }
}
