.updates-page {
  box-sizing: border-box;
  padding: 24px 20px 40px !important;
  color: #243024;
  font-size: 16px;
  line-height: 1.65;
}

.updates-page *,
.updates-page *::before,
.updates-page *::after {
  box-sizing: border-box;
}

.updates-page a,
.updates-page a:visited {
  color: #2f681f;
}

.updates-page a:hover {
  color: #1d4914;
}

.updates-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
  border: 1px solid #9bc27b;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fcf5 0%, #e9f5df 100%);
  box-shadow: 0 12px 30px rgba(48, 89, 35, 0.09);
}

.updates-hero::after {
  position: absolute;
  top: -55px;
  left: -45px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(103, 168, 70, 0.12);
  content: "";
}

.updates-hero__eyebrow {
  margin: 0 0 6px;
  color: #3d712b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.updates-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #173f13;
  font-size: 31px;
  line-height: 1.25;
}

.updates-hero__intro {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 14px 0 0;
  color: #344433;
  font-size: 17px;
}

.updates-hero__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 18px 0 0;
  color: #526250;
  font-size: 13px;
}

.updates-hero__meta time {
  font-weight: 700;
}

.updates-feed {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.update-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d4e1ce;
  border-right: 5px solid #68a844;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(44, 73, 38, 0.08);
}

.update-card--with-image {
  grid-template-columns: 160px minmax(0, 1fr);
}

.update-card__content {
  display: flex;
  min-width: 0;
  min-height: 205px;
  flex-direction: column;
  padding: 25px 28px;
}

.update-card__media {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-left: 1px solid #e1eadc;
  background: #f5f9f2;
}

.update-card__media img {
  display: block;
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

.update-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: #667064;
  font-size: 13px;
}

.update-card__category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 11px;
  border-radius: 999px;
  background: #e9f4e2;
  color: #2f651f;
  font-weight: 700;
}

.update-card time {
  direction: ltr;
  font-variant-numeric: tabular-nums;
}

.update-card h2 {
  margin: 15px 0 9px;
  color: #1b3319;
  font-size: 23px;
  line-height: 1.35;
}

.update-card p {
  margin: 0;
  color: #414b40;
}

.update-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.update-card__byline,
.update-card__archive-note {
  color: #687066;
  font-size: 12px;
}

.update-card__link,
.update-card__link:visited {
  display: inline-block;
  padding: 5px 0;
  color: #2d681e;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.updates-editorial-note {
  margin-top: 24px;
  padding: 15px 18px;
  border-right: 4px solid #78a961;
  background: #f4f8f1;
  color: #4b5749;
  font-size: 14px;
}

.updates-editorial-note strong {
  color: #244a1c;
}

.updates-editorial-note a {
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
}

.site-footer {
  box-sizing: border-box;
  text-align: center;
  font-size: 10px;
}

@media (max-width: 700px) {
  .updates-page {
    padding: 18px 12px 32px !important;
    font-size: 15px;
  }

  .updates-hero {
    padding: 23px 20px;
    border-radius: 12px;
  }

  .updates-hero h1 {
    font-size: 27px;
  }

  .updates-hero__intro {
    font-size: 16px;
  }

  .updates-feed {
    gap: 14px;
    margin-top: 20px;
  }

  .update-card--with-image {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .update-card__media {
    min-height: 0;
    padding: 9px;
    border-left: 1px solid #e1eadc;
    border-bottom: 0;
  }

  .update-card__media img {
    width: auto;
    max-width: 72px;
    max-height: 72px;
  }

  .update-card__content {
    min-height: 0;
    padding: 21px 19px;
  }

  .update-card h2 {
    font-size: 20px;
  }

  .update-card__footer {
    display: block;
  }

  .update-card__byline {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 430px) {
  .update-card__topline {
    align-items: flex-start;
  }
}

@media print {
  .site-nav {
    display: none !important;
  }

  .update-card,
  .updates-hero {
    break-inside: avoid;
    box-shadow: none;
  }
}
