.news-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 48px;
  align-items: stretch;
  border-top: 1px solid #e6eadc;
  border-bottom: 1px solid #dfe5d4;
  background: #f8faF3;
}
.news-ticker__label,
.news-ticker__all {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 clamp(18px, 3vw, 54px);
  background: #263516;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.news-ticker__all {
  background: #98bd20;
  color: #152006;
  transition: background .2s ease;
}
.news-ticker__all:hover { background: #a9cf2b; color: #152006; }
.news-ticker__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9df3c;
  box-shadow: 0 0 0 5px rgba(185, 223, 60, .16);
}
.news-ticker__viewport {
  overflow: hidden;
}
.news-ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  animation: news-ticker-scroll 38s linear infinite;
}
.news-ticker__viewport:hover .news-ticker__track,
.news-ticker__viewport:focus-within .news-ticker__track {
  animation-play-state: paused;
}
.news-ticker__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 0 34px;
  border-right: 1px solid #dde3d1;
  color: #252b20;
  font-size: 14px;
  white-space: nowrap;
}
.news-ticker__item:hover { color: #698900; }
.news-ticker__type {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e7efcf;
  color: #607d00;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.news-ticker__item time { color: #858b7d; font-size: 12px; }
@keyframes news-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.news-listing__filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px auto;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 18px;
}
.news-listing__filters input,
.news-listing__filters select {
  min-height: 50px;
  padding: 10px 15px;
  border: 1px solid #d8ddd0;
  border-radius: 10px;
  background: #fff;
}
.news-listing__count {
  margin-bottom: 28px;
  color: #777e71;
}
.news-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e2e7da;
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(37, 51, 22, .1);
}
.news-card__image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #edf1e6;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.news-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(185, 223, 60, .28), transparent 25%),
    linear-gradient(145deg, #18220f, #34491f);
  color: #fff;
}
.news-card__placeholder span {
  margin-bottom: 8px;
  color: #c9e276;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.news-card__placeholder strong {
  font-size: 58px;
  font-weight: 650;
  line-height: 1;
}
.news-card__placeholder small {
  margin-top: 5px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__body { padding: 26px; }
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
  color: #858c7e;
  font-size: 12px;
  text-transform: uppercase;
}
.news-card__meta span {
  color: #789d00;
  font-weight: 750;
  letter-spacing: .08em;
}
.news-card h2 {
  margin: 0 0 12px;
  color: #171b15;
  font-size: 22px;
  line-height: 1.35;
}
.news-card p {
  min-height: 78px;
  margin-bottom: 20px;
  color: #6f766a;
  line-height: 1.65;
}
.news-card__link {
  color: #789d00;
  font-size: 14px;
  font-weight: 700;
}

.news-detail-hero {
  padding: clamp(70px, 8vw, 130px) 0;
  background: linear-gradient(135deg, #17200f, #31451c);
  color: #fff;
}
.news-detail-hero__back {
  display: inline-block;
  margin-bottom: 28px;
  color: #c8df7d;
}
.news-detail-hero__type {
  display: block;
  margin-bottom: 14px;
  color: #b6d34e;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.news-detail-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.news-detail-hero time { color: rgba(255,255,255,.7); }
.news-detail { padding-top: clamp(48px, 6vw, 86px); }
.news-detail__image {
  width: 100%;
  max-height: 580px;
  margin-bottom: 42px;
  border-radius: 22px;
  object-fit: cover;
}
.news-detail__lead {
  margin-bottom: 34px;
  padding-left: 24px;
  border-left: 4px solid #98bd20;
  color: #30362b !important;
  font-size: 21px;
  line-height: 1.7;
}
.news-detail__content {
  color: #5d6558;
  font-size: 17px;
  line-height: 1.8;
}
.news-detail__content p { margin-bottom: 22px; }
.news-detail__content h2,
.news-detail__content h3 {
  margin: 38px 0 13px;
  color: #171b15;
}
.news-detail__content ul,
.news-detail__content ol { margin-bottom: 24px; padding-left: 24px; }
.news-detail__content .news-event-highlight {
  margin-bottom: 36px;
  padding: 28px;
  border-left: 5px solid #98bd20;
  border-radius: 0 16px 16px 0;
  background: #f4f7ed;
}
.news-detail__content .news-event-highlight h3 {
  margin: 0 0 10px;
}
.news-detail__content .news-event-highlight p {
  margin: 0;
}
.news-detail__content .news-schedule {
  display: grid;
  gap: 14px;
  margin: 30px 0 40px;
}
.news-detail__content .news-schedule-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid #e1e7d8;
  border-radius: 14px;
  background: #fafbf8;
}
.news-detail__content .news-schedule-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: #eaf1d6;
  font-size: 25px;
}
.news-detail__content .news-schedule-item h3 {
  margin: 0 0 7px;
  font-size: 20px;
}
.news-detail__content .news-schedule-item p {
  margin: 2px 0;
}
.news-detail__content .news-alert {
  margin: 38px 0;
  padding: 26px 28px;
  border: 1px solid #f0c8c1;
  border-left: 5px solid #c44332;
  border-radius: 0 14px 14px 0;
  background: #fff7f5;
}
.news-detail__content .news-alert h2 {
  margin: 0 0 10px;
  color: #8f2f23;
  font-size: 23px;
}
.news-detail__content .news-alert p {
  margin: 0;
  color: #583832;
}
.news-detail__content .news-contact-box {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 16px;
  background: #263516;
  color: #fff;
}
.news-detail__content .news-contact-box h2 {
  margin: 0 0 14px;
  color: #fff;
}
.news-detail__content .news-contact-box p {
  margin: 6px 0;
  color: rgba(255,255,255,.78);
}
.news-detail__content .news-contact-box a {
  color: #d1e98a;
  font-weight: 650;
}
.news-recent {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid #e2e7da;
  border-radius: 18px;
  background: #fafbf8;
}
.news-recent h2 { margin-bottom: 20px; font-size: 22px; }
.news-recent a {
  display: block;
  padding: 17px 0;
  border-top: 1px solid #e2e7da;
}
.news-recent a span {
  display: block;
  margin-bottom: 6px;
  color: #789d00;
  font-size: 11px;
  text-transform: uppercase;
}
.news-recent a strong { line-height: 1.45; }

@media (prefers-reduced-motion: reduce) {
  .news-ticker__track { animation: none; }
  .news-ticker__viewport { overflow-x: auto; }
}
@media (max-width: 767px) {
  .news-ticker { grid-template-columns: auto minmax(0,1fr); }
  .news-ticker__label { padding: 0 14px; font-size: 0; }
  .news-ticker__label::after { content: "News"; font-size: 12px; }
  .news-ticker__all { display: none; }
  .news-ticker__item { padding: 0 22px; }
  .news-listing__filters { grid-template-columns: 1fr; }
  .news-card__image { height: 210px; }
  .news-detail__content .news-schedule-item {
    grid-template-columns: 1fr;
  }
  .news-recent { position: static; }
}
