.news-body {
  background: var(--paper);
}

.news-hero {
  min-height: 390px;
  padding: 150px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 7, 5, 0.86), rgba(10, 7, 5, 0.42)),
    url("assets/community.png") center / cover no-repeat;
}

.news-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
}

.news-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.news-page-section {
  padding-bottom: 60px;
  background:
    radial-gradient(circle at 92% 6%, rgba(182, 122, 45, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf9, #f7f3ed);
}

.news-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.news-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: 14px;
  margin-bottom: 18px;
}

.news-tools label {
  display: grid;
  gap: 8px;
  color: #35281f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-tools input,
.news-tools select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d5c9ba;
  border-radius: 6px;
  font: inherit;
  outline: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  color: inherit;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.news-card:hover,
.news-card.is-active {
  border-color: rgba(154, 100, 34, 0.48);
  transform: translateY(-2px);
}

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

.news-card-content {
  display: grid;
  gap: 9px;
  padding: 17px;
}

.news-card time,
.news-detail time {
  color: #735234;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.12;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.news-detail {
  position: sticky;
  top: 110px;
  min-width: 0;
  padding: 22px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 7px;
  object-fit: cover;
}

.news-detail h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}

.news-detail p {
  color: #3d3128;
  white-space: pre-line;
}

.news-category-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  padding: 4px 8px;
  color: #6f461c;
  background: rgba(182, 122, 45, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

  .news-hero {
    padding: 142px 0 62px;
  }

  .news-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
  }
}

@media (max-width: 1080px) {
  .news-page-layout {
    grid-template-columns: 1fr;
  }

  .news-detail {
    position: static;
  }

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

@media (max-width: 900px) {
  .news-detail {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .news-hero {
    min-height: 330px;
    padding: 130px 0 52px;
  }

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

  .news-card-content,
  .news-detail {
    padding: 16px;
  }

  .news-detail h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

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