:root {
  --news-card-shadow: 0 18px 34px rgba(78, 50, 28, 0.08);
  --news-soft-gold: rgba(197, 166, 117, 0.18);
  --news-red-wash: rgba(154, 31, 31, 0.05);
}

.news-page {
  background:
    radial-gradient(circle at top, rgba(255, 244, 228, 0.75), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #fbf7f1 42%, #f7f1e8 100%);
}

.news-main {
  flex: 1;
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 5.6rem) 1rem clamp(3rem, 6vw, 4.8rem);
  background: #f8f1e7;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.92) 0%, rgba(251, 247, 241, 0.84) 22%, rgba(251, 247, 241, 0.42) 44%, rgba(251, 247, 241, 0.14) 62%, rgba(251, 247, 241, 0.12) 100%),
    linear-gradient(180deg, rgba(60, 32, 18, 0.05), rgba(60, 32, 18, 0.18));
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(154, 31, 31, 0.08), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(158, 139, 105, 0.12), transparent 20%);
}

.news-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-hero__inner {
  position: relative;
  z-index: 3;
  width: min(1440px, 100%);
  margin: 0 auto;
  display: block;
}

.news-hero__copy {
  max-width: 34rem;
}

.news-hero__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.news-hero__title {
  margin: 1rem 0 0;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.12em;
  color: #4a372d;
}

.news-hero__desc {
  margin: 1.45rem 0 0;
  font-size: 0.98rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #6d5a4f;
}

.news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.news-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #7c6759;
}

.news-hero__meta-item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-red), #c88b63);
  box-shadow: 0 0 0 5px rgba(154, 31, 31, 0.08);
}

.news-grid-section {
  padding: clamp(3rem, 5vw, 4.8rem) 1rem clamp(4rem, 6vw, 5.6rem);
}

.news-grid-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.news-sidebar {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1.2rem;
}

.news-sidebar__card,
.news-sidebar__feature {
  border: 1px solid rgba(154, 31, 31, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--news-card-shadow);
  backdrop-filter: blur(8px);
}

.news-sidebar__card {
  padding: 1.4rem 1.3rem 1.5rem;
}

.news-sidebar__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-red);
}

.news-sidebar__title::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  margin-top: 0.8rem;
  background: rgba(154, 31, 31, 0.26);
}

.news-sidebar__list {
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0 0;
}

.news-sidebar__link {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(154, 31, 31, 0.06);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(249, 243, 235, 0.88));
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #5d4a3f;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    background-color 200ms ease;
}

.news-sidebar__link:hover,
.news-sidebar__link.is-active {
  color: var(--brand-red);
  border-color: rgba(154, 31, 31, 0.22);
  transform: translateX(3px);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 245, 236, 0.94));
}

.news-sidebar__feature {
  overflow: hidden;
}

.news-sidebar__feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-sidebar__feature-body {
  padding: 1rem 1.05rem 1.1rem;
}

.news-sidebar__feature-label {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  background: rgba(154, 31, 31, 0.08);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--brand-red);
}

.news-sidebar__feature-text {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  line-height: 1.9;
  color: #6d5a4f;
}

.news-content {
  min-width: 0;
}

.news-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(154, 31, 31, 0.08);
}

.news-toolbar__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #4b3a31;
}

.news-toolbar__desc {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  line-height: 1.85;
  color: #847165;
}

.news-toolbar__result {
  flex-shrink: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #8a7568;
}

.news-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 1rem;
  border: 1px solid rgba(154, 31, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 238, 0.96)),
    #fff;
  box-shadow: var(--news-card-shadow);
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 31, 31, 0.16);
  box-shadow: 0 24px 42px rgba(78, 50, 28, 0.12);
}

.news-card__visual {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  background: #efe6d8;
}

.news-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(45, 26, 16, 0.2)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 18%);
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-card__image {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: #8d786a;
}

.news-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.7rem;
  border: 1px solid rgba(154, 31, 31, 0.14);
  background: rgba(154, 31, 31, 0.04);
  color: var(--brand-red);
}

.news-card__title {
  margin: 1rem 0 0;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #43342c;
}

.news-card__excerpt {
  margin: 1rem 0 0;
  font-size: 0.94rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #6a584d;
}

.news-card__footer {
  margin-top: auto;
  padding-top: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(154, 31, 31, 0.08);
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--brand-red);
}

.news-card__link::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.news-card__stat {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #8d786a;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.news-pagination__item {
  min-width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(154, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: #6e5a50;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.news-pagination__item:hover,
.news-pagination__item.is-active {
  border-color: rgba(154, 31, 31, 0.26);
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-1px);
}

.news-pagination__item.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.news-pagination__ellipsis {
  padding: 0 0.2rem;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: #937f72;
}

.detail-page {
  background:
    radial-gradient(circle at top, rgba(255, 244, 226, 0.7), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #faf6ef 44%, #f6efe6 100%);
}

.detail-hero {
  position: relative;
  padding: clamp(2.6rem, 5vw, 4.5rem) 1rem clamp(2.4rem, 5vw, 3.8rem);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(247, 239, 228, 0.95)),
    #f8f0e6;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, rgba(154, 31, 31, 0.06), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(158, 139, 105, 0.16), transparent 22%);
}

.detail-hero__inner,
.detail-article,
.detail-bottom {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.detail-breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #8a7468;
}

.detail-breadcrumb a {
  text-decoration: none;
  color: #725c50;
}

.detail-breadcrumb span[aria-hidden="true"] {
  opacity: 0.45;
}

.detail-header {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}

.detail-header__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  background: rgba(154, 31, 31, 0.06);
  border: 1px solid rgba(154, 31, 31, 0.12);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--brand-red);
}

.detail-header__title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #43332b;
}

.detail-header__lead {
  margin: 1.2rem 0 0;
  max-width: 52rem;
  font-size: 0.98rem;
  line-height: 2;
  color: #6d5a4f;
}

.detail-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #8a7568;
}

.detail-article-wrap {
  padding: clamp(2.6rem, 5vw, 4rem) 1rem 2.2rem;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(154, 31, 31, 0.08);
  box-shadow: var(--news-card-shadow);
  background: #efe5d8;
}

.detail-cover__image {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.detail-body {
  margin-top: 2.3rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(154, 31, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 239, 0.98)),
    #fff;
  box-shadow: var(--news-card-shadow);
}

.detail-body h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #4c392f;
}

.detail-body h2:first-child {
  margin-top: 0;
}

.detail-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 2.08;
  text-align: justify;
  color: #5f4d41;
}

.detail-body p + p {
  margin-top: 1rem;
}

.detail-highlight {
  margin: 1.5rem 0;
  padding: 1.2rem 1.25rem 1.2rem 1.45rem;
  border-left: 3px solid var(--brand-red);
  background:
    linear-gradient(90deg, rgba(154, 31, 31, 0.05), rgba(154, 31, 31, 0.01)),
    #fffaf6;
}

.detail-highlight p {
  color: #614e43;
}

.detail-keypoints {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.detail-keypoints li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #5f4d41;
}

.detail-keypoints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 9999px;
  background: var(--brand-red);
  box-shadow: 0 0 0 5px rgba(154, 31, 31, 0.08);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.detail-gallery__item {
  overflow: hidden;
  border: 1px solid rgba(154, 31, 31, 0.08);
  background: #efe5d8;
}

.detail-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-bottom-wrap {
  padding: 0 1rem clamp(4rem, 6vw, 5.6rem);
}

.detail-bottom {
  display: grid;
  gap: 1.2rem;
}

.detail-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-nav__item {
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid rgba(154, 31, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 235, 0.96)),
    #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--news-card-shadow);
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.detail-nav__item:hover {
  transform: translateY(-3px);
  border-color: rgba(154, 31, 31, 0.18);
}

.detail-nav__label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--brand-red);
}

.detail-nav__title {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #4c392f;
}

.detail-return {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(154, 31, 31, 0.16);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--brand-red);
  text-decoration: none;
}

.detail-return::before {
  content: "←";
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .news-grid-shell {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 768px) {
  .news-hero,
  .detail-hero {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .news-grid-section,
  .detail-article-wrap,
  .detail-bottom-wrap {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

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

  .news-card__visual {
    min-height: 13.5rem;
  }

  .news-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .detail-gallery,
  .detail-nav,
  .news-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .news-hero__title,
  .detail-header__title {
    letter-spacing: 0.06em;
  }

  .news-hero__desc,
  .detail-header__lead,
  .detail-body p,
  .news-card__excerpt {
    font-size: 0.92rem;
  }

  .news-pagination {
    gap: 0.45rem;
  }

  .news-pagination__item {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.8rem;
  }
}
