.page-news {
  --news-bg-soft: #FBF3E4;
  --news-gold-line: rgba(201, 167, 106, 0.4);
  --news-red-wash: rgba(176, 58, 46, 0.06);
  --news-green-wash: rgba(30, 111, 80, 0.06);
  --news-blue-wash: rgba(31, 58, 95, 0.06);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: clip;
  padding: 0 18px var(--spacing-xl);
}

.page-news .breadcrumbs {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-top: var(--spacing-lg);
}

.page-news .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.page-news .breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 58, 95, 0.3);
  transition: border-color var(--transition), color var(--transition);
}

.page-news .breadcrumbs a:hover {
  border-color: var(--blue);
  color: var(--ink);
}

.page-news .breadcrumbs li[aria-current="page"] {
  color: var(--red);
  font-weight: 600;
}

.page-news .news-hero {
  text-align: center;
  padding: 44px 16px 34px;
  position: relative;
}

.page-news .news-hero-deco {
  position: relative;
  width: 110px;
  height: 92px;
  margin: 0 auto 18px;
}

.page-news .news-hero-coin {
  position: absolute;
  left: 0;
  top: 0;
  width: 84px;
  height: 84px;
  animation: news-coin-spin 24s linear infinite;
}

@keyframes news-coin-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-news .news-hero-seal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white-warm);
  font-family: var(--font-display);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transform: rotate(8deg);
  box-shadow: 0 2px 10px rgba(176, 58, 46, 0.35);
  line-height: 1;
}

.page-news .news-hero-kicker {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--red);
  letter-spacing: 0.08em;
}

.page-news .news-hero-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  color: rgba(45, 42, 38, 0.82);
  line-height: 1.8;
}

.page-news .section {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.page-news .section-tight {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.page-news .section-heading {
  margin-bottom: var(--spacing-lg);
}

.page-news .latest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .post-card {
  background: var(--white-warm);
  border: 1px solid rgba(201, 167, 106, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.page-news .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 42, 38, 0.12);
  border-color: var(--gold);
}

.page-news .post-media {
  overflow: hidden;
  background: var(--paper-deep);
}

.page-news .post-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-news .post-card:hover .post-media img {
  transform: scale(1.03);
}

.page-news .post-featured .post-media img {
  height: 230px;
}

.page-news .post-body {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

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

.page-news .post-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.page-news .post-body h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
  background-image: linear-gradient(to right, var(--red), var(--red));
  background-position: 0 100%;
  background-size: 0 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease, color 0.3s ease;
}

.page-news .post-body h3 a:hover {
  color: var(--red);
  background-size: 100% 2px;
}

.page-news .post-body p {
  margin: 0;
  font-size: 14px;
  color: rgba(45, 42, 38, 0.78);
  line-height: 1.75;
}

.page-news .post-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(45, 42, 38, 0.55);
  padding-top: 8px;
  border-top: 1px dashed rgba(201, 167, 106, 0.3);
}

.page-news .post-meta a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.page-news .post-meta a:hover {
  color: var(--red);
}

.page-news .categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-news .category-card {
  background: var(--white-warm);
  border: 1px solid rgba(201, 167, 106, 0.28);
  border-radius: var(--radius);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-panel);
  transition: transform var(--transition), box-shadow var(--transition);
}

.page-news .category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(45, 42, 38, 0.1);
}

.page-news .category-card.cat-update {
  border-top: 3px solid var(--red);
}

.page-news .category-card.cat-culture {
  border-top: 3px solid var(--gold);
}

.page-news .category-card.cat-event {
  border-top: 3px solid var(--green);
}

.page-news .category-card.cat-story {
  border-top: 3px solid var(--blue);
}

.page-news .category-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-news .category-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201, 167, 106, 0.14);
}

.page-news .cat-update .category-icon {
  background: var(--news-red-wash);
}

.page-news .cat-culture .category-icon {
  background: rgba(201, 167, 106, 0.2);
}

.page-news .cat-event .category-icon {
  background: var(--news-green-wash);
}

.page-news .cat-story .category-icon {
  background: var(--news-blue-wash);
}

.page-news .category-title h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.page-news .category-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(201, 167, 106, 0.18);
}

.page-news .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(45, 42, 38, 0.82);
}

.page-news .category-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.page-news .category-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.page-news .cat-update .category-list li::before {
  background: var(--red);
}

.page-news .cat-event .category-list li::before {
  background: var(--green);
}

.page-news .cat-story .category-list li::before {
  background: var(--blue);
}

.page-news .category-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.page-news .category-link:hover {
  color: var(--red);
  gap: 8px;
}

.page-news .hot-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .hot-chart {
  background: var(--white-warm);
  border: 1px solid rgba(201, 167, 106, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.page-news .hot-chart img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .hot-chart-stats {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(201, 167, 106, 0.25);
}

.page-news .hot-stat {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
}

.page-news .hot-stat + .hot-stat {
  border-left: 1px solid rgba(201, 167, 106, 0.25);
}

.page-news .hot-stat dt {
  font-size: 12px;
  color: rgba(45, 42, 38, 0.55);
  letter-spacing: 0.06em;
}

.page-news .hot-stat dd {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--red);
  line-height: 1.2;
}

.page-news .hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: hot-counter;
}

.page-news .hot-item {
  position: relative;
  background: var(--white-warm);
  border: 1px solid rgba(201, 167, 106, 0.25);
  border-radius: var(--radius);
  padding: 16px 16px 16px 62px;
  box-shadow: var(--shadow-panel);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  counter-increment: hot-counter;
}

.page-news .hot-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(45, 42, 38, 0.1);
  border-color: var(--gold);
}

.page-news .hot-rank {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--red);
  background: rgba(176, 58, 46, 0.1);
  border: 1px solid rgba(176, 58, 46, 0.2);
}

.page-news .hot-item:nth-child(1) .hot-rank {
  background: var(--gold);
  color: var(--white-warm);
  border-color: var(--gold-bright);
  font-size: 22px;
}

.page-news .hot-main h3 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.page-news .hot-main h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

.page-news .hot-main h3 a:hover {
  color: var(--red);
}

.page-news .hot-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(45, 42, 38, 0.55);
}

.page-news .hot-count {
  margin-left: auto;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 167, 106, 0.12);
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 106, 0.3);
}

.page-news .subscribe-tip {
  max-width: var(--container-w);
  margin: var(--spacing-md) auto 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red-deep), var(--red) 62%, var(--red));
  color: var(--white-warm);
  overflow: hidden;
  box-shadow: var(--shadow-cta);
  position: relative;
}

.page-news .subscribe-tip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(227, 201, 130, 0.22) 0, transparent 170px), radial-gradient(circle at 95% 90%, rgba(227, 201, 130, 0.14) 0, transparent 140px);
  pointer-events: none;
}

.page-news .tip-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 36px 20px;
}

.page-news .tip-inner::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.page-news .tip-visual {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.page-news .tip-brush {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 68px;
  background: var(--gold);
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transform: rotate(-6deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.page-news .tip-coin {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-bright);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--white-warm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  line-height: 1;
}

.page-news .tip-content {
  text-align: center;
  max-width: 560px;
}

.page-news .tip-content h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--white-warm);
}

.page-news .tip-content p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 249, 240, 0.88);
}

.page-news .tip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.page-news .tip-actions .btn-gold {
  background: var(--gold-bright);
  color: var(--red-deep);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.page-news .tip-actions .btn-outline {
  border-color: var(--white-warm);
  color: var(--white-warm);
  background: transparent;
}

.page-news .tip-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-bright);
}

@media (min-width: 768px) {
  .page-news {
    padding: 0 24px var(--spacing-xl);
  }

  .page-news .news-hero {
    padding: 56px 24px 42px;
  }

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

  .page-news .news-hero-desc {
    font-size: 16px;
  }

  .page-news .latest-grid {
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-areas:
      "featured second"
      "featured third";
    gap: 24px;
    align-items: stretch;
  }

  .page-news .post-featured {
    grid-area: featured;
  }

  .page-news .post-card:nth-child(2) {
    grid-area: second;
  }

  .page-news .post-card:nth-child(3) {
    grid-area: third;
  }

  .page-news .post-featured .post-media img {
    height: 300px;
  }

  .page-news .post-body h3 {
    font-size: 22px;
  }

  .page-news .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
  }

  .page-news .category-card.cat-event,
  .page-news .category-card.cat-story {
    transform: translateY(18px);
  }

  .page-news .category-card.cat-event:hover,
  .page-news .category-card.cat-story:hover {
    transform: translateY(14px);
  }

  .page-news .hot-wrapper {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-news .hot-item {
    padding: 18px 20px 18px 64px;
  }

  .page-news .tip-inner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 40px 36px;
    text-align: left;
  }

  .page-news .tip-content {
    text-align: left;
    max-width: 540px;
  }

  .page-news .tip-actions {
    justify-content: flex-start;
  }

  .page-news .tip-content h2 {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .page-news .latest-grid {
    grid-template-columns: 1.45fr 0.55fr;
    gap: 28px;
  }

  .page-news .post-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .page-news .post-featured .post-media {
    height: 100%;
  }

  .page-news .post-featured .post-media img {
    height: 100%;
    min-height: 320px;
  }

  .page-news .post-featured .post-body {
    padding: 28px 26px;
  }

  .page-news .post-featured .post-body h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  .page-news .post-featured .post-body p {
    font-size: 15px;
  }

  .page-news .categories-grid {
    grid-template-columns: 1.05fr 1.1fr 0.85fr 0.85fr;
    gap: 22px;
  }

  .page-news .category-card.cat-culture,
  .page-news .category-card.cat-event,
  .page-news .category-card.cat-story {
    transform: translateY(24px);
  }

  .page-news .category-card.cat-culture:hover,
  .page-news .category-card.cat-event:hover,
  .page-news .category-card.cat-story:hover {
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-hero-coin {
    animation: none;
  }

  .page-news .post-card,
  .page-news .category-card,
  .page-news .hot-item {
    transition: none;
  }

  .page-news .category-card.cat-event,
  .page-news .category-card.cat-story {
    transform: none;
  }
}
