.page-news {
  --news-red: #C0392B;
  --news-yellow: #F39C12;
  --news-green: #1E8449;
  --news-bg: #FAF3E7;
  --news-surface: #FFF8EE;
  --news-text: #241F1B;
  --news-text-secondary: #3D3A35;
  --news-line: #B5654A;
  --news-highlight: #FADEDA;
  --news-outline: #E6D6C0;
  --news-shadow: 0 1px 0 rgba(36, 31, 27, 0.06), 0 12px 30px -18px rgba(36, 31, 27, 0.25);
  background:
    radial-gradient(circle at 92% 6%, rgba(243, 156, 18, 0.14) 0, rgba(243, 156, 18, 0.14) 90px, transparent 91px),
    radial-gradient(circle at 4% 42%, rgba(30, 132, 73, 0.08) 0, rgba(30, 132, 73, 0.08) 70px, transparent 71px),
    var(--news-bg);
  color: var(--news-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-news .container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 28px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--news-text-secondary);
}

.page-news .breadcrumb a {
  color: var(--news-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.page-news .breadcrumb a:hover {
  border-color: var(--news-red);
}

.page-news .breadcrumb__sep {
  color: rgba(61, 58, 53, 0.5);
}

.page-news .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--news-red);
}

.page-news .eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--news-yellow);
  border-radius: 2px;
}

.page-news .display-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 6.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--news-text);
}

.page-news .lede {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  color: var(--news-text-secondary);
}

.page-news .section-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  color: var(--news-text);
}

/* ==== hero ==== */
.page-news .news-hero {
  position: relative;
  padding-bottom: 48px;
}

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

.page-news .news-hero__copy {
  padding: 8px 0 0;
}

.page-news .news-hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.page-news .news-hero__keywords li {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--news-text-secondary);
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-radius: 999px;
}

.page-news .news-hero__banner {
  position: relative;
  margin: 0;
}

.page-news .news-hero__banner::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -14px;
  bottom: -14px;
  left: 14px;
  border: 2px solid var(--news-yellow);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.page-news .news-hero__banner img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--news-shadow);
}

/* ==== latest ==== */
.page-news .news-latest {
  position: relative;
  padding: 42px 0 56px;
  background: var(--news-surface);
  border-top: 1px solid var(--news-outline);
  border-bottom: 1px solid var(--news-outline);
}

.page-news .news-latest::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--news-red) 0 22%, var(--news-yellow) 22% 44%, var(--news-green) 44% 100%);
  opacity: 0.85;
}

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

.page-news .news-catalog {
  display: none;
}

@media (min-width: 1024px) {
  .page-news .news-catalog {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 32px);
    align-self: start;
    padding: 22px 20px 18px;
    background: rgba(250, 243, 231, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--news-outline);
    border-left: 4px solid var(--news-red);
    border-radius: 0 4px 4px 0;
    box-shadow: var(--news-shadow);
  }

  .page-news .news-latest__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
  }
}

.page-news .news-catalog__list {
  list-style: none;
  margin: 10px 0 14px;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-news .news-catalog__link {
  display: block;
  padding: 8px 10px;
  margin-left: -10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--news-text);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.page-news .news-catalog__link:hover,
.page-news .news-catalog__link:focus-visible {
  border-left-color: var(--news-red);
  background: var(--news-highlight);
  color: var(--news-red);
}

.page-news .news-catalog__tip {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--news-text-secondary);
  padding-top: 12px;
  border-top: 1px dashed var(--news-outline);
}

.page-news .news-list__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.page-news .news-list__note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--news-text-secondary);
}

.page-news .chili-mark {
  flex: 0 0 auto;
  position: relative;
  width: 16px;
  height: 28px;
  margin-top: 4px;
  background: var(--news-red);
  border-radius: 68% 32% 42% 44% / 62% 38% 44% 42%;
  transform: rotate(-18deg);
}

.page-news .chili-mark::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 5px;
  width: 7px;
  height: 10px;
  background: var(--news-green);
  border-radius: 3px 2px 4px 4px;
  transform: rotate(4deg);
}

.page-news .news-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-news .news-list__tags li {
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--news-text-secondary);
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-radius: 3px;
}

.page-news .news-item {
  position: relative;
  margin: 0 0 18px;
  padding: 18px 18px 18px 20px;
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-left: 4px solid transparent;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(36, 31, 27, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-news .news-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--news-shadow);
  border-color: var(--news-line);
}

.page-news .news-item--hot {
  border-left: 4px solid var(--news-red);
  background: linear-gradient(180deg, #FFF8EE 0%, #FFF3EA 100%);
}

.page-news .news-item--hot::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: var(--news-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

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

.page-news .news-item__category {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--news-red);
  border-radius: 2px;
}

.page-news .news-item__season {
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fff;
  background: var(--news-green);
  border-radius: 999px;
}

.page-news .news-item__title {
  margin: 6px 0 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--news-text);
}

.page-news .news-item__summary {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--news-text-secondary);
  max-width: 72ch;
}

.page-news .news-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--news-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.32);
  transition: border-color 0.16s ease, gap 0.16s ease;
}

.page-news .news-item__link:hover,
.page-news .news-item__link:focus-visible {
  border-color: var(--news-red);
  gap: 10px;
}

/* ==== legacy ==== */
.page-news .news-legacy {
  padding: 52px 0 56px;
  background:
    linear-gradient(115deg, rgba(192, 57, 43, 0.055) 0 14%, transparent 14.2%),
    var(--news-bg);
}

.page-news .news-legacy__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 960px) {
  .page-news .news-legacy__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
  }
}

.page-news .news-legacy__media {
  position: relative;
  margin: 0;
}

.page-news .news-legacy__media::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--news-green);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(255, 248, 238, 0.72) 0 20%, transparent 21%);
  z-index: 1;
}

.page-news .news-legacy__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--news-shadow);
}

.page-news .news-legacy__lead {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--news-text-secondary);
}

.page-news .news-legacy__facts {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-legacy__facts li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  line-height: 1.66;
  color: var(--news-text);
}

.page-news .news-legacy__facts li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 12px;
  height: 18px;
  background: var(--news-green);
  border-radius: 68% 32% 42% 44% / 62% 38% 44% 42%;
  transform: rotate(-18deg);
  opacity: 0.72;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.page-news .btn-secondary {
  background: var(--news-red);
  color: #fff;
  box-shadow: 4px 4px 0 rgba(192, 57, 43, 0.24);
}

.page-news .btn-secondary:hover,
.page-news .btn-secondary:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(192, 57, 43, 0.24);
}

/* ==== rhythm ==== */
.page-news .news-rhythm {
  position: relative;
  padding: 52px 0 56px;
  background:
    repeating-linear-gradient(-45deg, rgba(61, 58, 53, 0.025) 0 2px, transparent 2px 14px),
    var(--news-surface);
  border-top: 1px solid var(--news-outline);
  border-bottom: 1px solid var(--news-outline);
}

.page-news .news-rhythm__header {
  margin-bottom: 26px;
}

.page-news .news-rhythm__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--news-text-secondary);
}

.page-news .news-rhythm__body {
  display: grid;
  gap: 30px;
}

@media (min-width: 1000px) {
  .page-news .news-rhythm__body {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 42px;
    align-items: start;
  }
}

.page-news .news-rhythm__calendar {
  position: relative;
  margin: 0;
}

.page-news .news-rhythm__calendar::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--news-green);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}

.page-news .news-rhythm__calendar img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.page-news .news-rhythm__tiers {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-news .news-rhythm__tier {
  padding: 18px 18px 16px;
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-top: 4px solid var(--news-line);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(36, 31, 27, 0.03);
}

.page-news .news-rhythm__tier--daily {
  border-top-color: var(--news-red);
}

.page-news .news-rhythm__tier--weekly {
  border-top-color: var(--news-yellow);
}

.page-news .news-rhythm__tier--season {
  border-top-color: var(--news-green);
}

.page-news .news-rhythm__tier h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--news-text);
}

.page-news .news-rhythm__tier > p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--news-text-secondary);
}

.page-news .news-rhythm__tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .news-rhythm__tier li {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.82rem;
  color: var(--news-text);
  background: rgba(234, 214, 192, 0.24);
  border: 1px solid rgba(181, 101, 74, 0.28);
  border-radius: 999px;
}

/* ==== seasons / timeline ==== */
.page-news .news-seasons {
  padding: 52px 0 58px;
  background:
    linear-gradient(180deg, rgba(36, 31, 27, 0.04) 0%, transparent 60%),
    var(--news-bg);
}

.page-news .news-seasons__header {
  margin-bottom: 30px;
}

.page-news .news-seasons__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--news-text-secondary);
}

.page-news .news-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-left: 2px dashed var(--news-line);
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .page-news .news-timeline {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
    padding: 0 0 0;
  }

  .page-news .news-timeline::before {
    left: 4%;
    right: 4%;
    top: auto;
    bottom: auto;
    height: 2px;
    width: auto;
    border-left: none;
    border-top: 2px dashed var(--news-line);
    transform: translateY(0);
  }
}

.page-news .news-timeline__item {
  position: relative;
  padding: 18px 14px 14px;
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(36, 31, 27, 0.04);
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.page-news .news-timeline__item:hover {
  border-color: var(--news-line);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .page-news .news-timeline__item {
    padding: 18px 12px 12px;
    border-top: 4px solid var(--news-green);
    border-radius: 2px;
  }

  .page-news .news-timeline__item--current {
    border-top-color: var(--news-red);
  }
}

.page-news .news-timeline__node {
  position: absolute;
  top: -5px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 3px solid var(--news-green);
  border-radius: 50%;
  z-index: 2;
}

.page-news .news-timeline__item--current .news-timeline__node {
  border-color: var(--news-red);
}

.page-news .news-timeline__season {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--news-green);
  border-radius: 999px;
}

.page-news .news-timeline__item--current .news-timeline__season {
  background: var(--news-red);
}

.page-news .news-timeline__detail summary {
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--news-text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.page-news .news-timeline__detail summary::before {
  content: "＋";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--news-red);
  transition: transform 0.14s ease;
}

.page-news .news-timeline__detail[open] summary::before {
  transform: rotate(45deg);
}

.page-news .news-timeline__detail p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.68;
  color: var(--news-text-secondary);
}

/* ==== features ==== */
.page-news .news-features {
  padding: 52px 0 60px;
  background:
    radial-gradient(circle at 92% 8%, rgba(243, 156, 18, 0.14) 0, rgba(243, 156, 18, 0.14) 110px, transparent 111px),
    var(--news-surface);
  border-top: 1px solid var(--news-outline);
}

.page-news .news-features__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 1000px) {
  .page-news .news-features__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 46px;
  }

  .page-news .news-features__content {
    order: 1;
  }

  .page-news .news-features__media {
    order: 2;
  }
}

.page-news .news-features__lead {
  margin: 0 0 20px;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--news-text-secondary);
}

.page-news .news-features__cards {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .page-news .news-features__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .news-feature-card {
  position: relative;
  padding: 20px 18px 18px;
  background: var(--news-surface);
  border: 1px solid var(--news-outline);
  border-left: 5px solid var(--news-yellow);
  border-radius: 3px;
  box-shadow: var(--news-shadow);
}

.page-news .news-feature-card__chip {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--news-green);
  background: rgba(30, 132, 73, 0.12);
  border: 1px solid rgba(30, 132, 73, 0.4);
  border-radius: 999px;
}

.page-news .news-feature-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--news-text);
}

.page-news .news-feature-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--news-text-secondary);
}

.page-news .news-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--news-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.32);
  transition: border-color 0.16s ease, gap 0.16s ease;
}

.page-news .news-feature-card__link:hover,
.page-news .news-feature-card__link:focus-visible {
  border-color: var(--news-red);
  gap: 10px;
}

.page-news .news-features__media {
  position: relative;
  margin: 0;
}

.page-news .news-features__media::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -12px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--news-red);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(255, 248, 238, 0.8) 0 20%, transparent 21%);
  z-index: 2;
}

.page-news .news-features__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--news-shadow);
}

/* ==== responsive refinement ==== */
@media (min-width: 720px) {
  .page-news .news-item {
    padding: 20px 22px 20px 24px;
  }

  .page-news .news-item__title {
    font-size: 1.16rem;
  }
}

@media (max-width: 420px) {
  .page-news .news-hero__banner::before {
    top: 8px;
    right: -8px;
    bottom: -8px;
    left: 8px;
  }

  .page-news .news-rhythm__calendar::before {
    inset: 8px -8px -8px 8px;
  }

  .page-news .news-item__meta {
    gap: 6px;
  }
}
