@charset "UTF-8";
/* ==========================================================================
   News header
   ========================================================================== */

.news__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.news__title {
  position: relative;
  margin: 0;
  padding-bottom: 0.4rem;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  font-weight: 700;
  color: var(--color-heading);
}

.news__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--color-brand-green-light);
}

.news__all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--link-color);
  text-decoration: none;
}

.news__all:hover {
  color: var(--link-hover-color);
}

.news__all .fa-arrow-right {
  transition: transform 0.2s;
}

.news__all:hover .fa-arrow-right {
  transform: translateX(3px);
}


/* ==========================================================================
   Lead story
   ========================================================================== */

.news-lead {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-lead:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.news-lead::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--color-brand-green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.news-lead:hover::after {
  transform: scaleX(1);
}

.news-lead__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  color: inherit;
  text-decoration: none;
}

.news-lead__link:not(:has(.news-lead__figure)) {
  grid-template-columns: 1fr;
  min-height: auto;
}

@supports not selector(:has(*)) {
  .news-lead__link {
    grid-template-columns: 1fr 1fr;
  }
}

.news-lead__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.news-lead__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-lead:hover .news-lead__img {
  transform: scale(1.04);
}

.news-lead__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.news-lead__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-green-light-text);
}

.news-lead__kicker a {
  color: inherit;
  text-decoration: none;
}

.news-lead__kicker a:hover {
  text-decoration: underline;
}

.news-lead__heading {
  margin: 0 0 0.85rem;
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-brand-green-dark);
  transition: color 0.2s;
}

.news-lead:hover .news-lead__heading {
  color: var(--link-hover-color);
}

.news-lead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.85rem;
  color: #6b6e72;  /* 5.12:1 on #fff ✓ */
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  letter-spacing: 0.02em;
}
.news-lead__meta dd {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.news-lead__meta dd + dd::before {
  content: "|";
  margin: 0 0.55rem;
  color: var(--color-border);
  font-weight: 400;
}
.news-lead__meta [class*="icon-"] {
  font-size: 0.9em;
  color: #6b6e72;
}

.news-lead .mod-articles-tags {
  margin-bottom: 0.75rem;
}

.news-lead__excerpt {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-ink);
}

.news-lead__cta .readmore,
.news-lead__body > .readmore  {
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0078ac;
  margin: 0;
  line-height: 1;
}

.news-lead__cta .readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--link-color);
}

.news-lead__cta .readmore .fa-arrow-right {
  color: #0078ac;
  transition: transform 0.25s ease;
  line-height: 1;
}

.news-lead:hover .news-lead__cta .readmore .fa-arrow-right {
  transform: translateX(3px);
}

.news-lead__cta .readmore,
.news-lead__body > .readmore {
  font-size: 0.75rem;
  color: var(--link-color);
  text-decoration: none;
}

.news-lead__cta .readmore:hover,
.news-lead__body > .readmore:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.news-lead__body > .readmore {
  margin-top: auto;
}

@media (max-width: 700px) {
  .news-lead__link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-lead__figure {
    height: clamp(180px, 30vw, 240px);
  }
}


/* ==========================================================================
   News index
   ========================================================================== */

.news-index {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--color-brand-green-dark);
}

.news-index__item {
  border-bottom: 1px solid var(--color-border);
}

.news-index__link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(0.85rem, 2vw, 1.1rem) 1rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s, padding 0.2s, margin 0.2s;
}

.news-index__item .news-index__link:hover {
  background: rgba(5, 91, 41, 0.03);
  text-decoration: none;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(0.85rem, 2vw, 1.1rem) 1rem;
  color: inherit;
}

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

.news-index__heading {
  margin: 0;
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  font-size: clamp(0.88rem, 0.82rem + 0.25vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-ink);
  transition: color 0.2s;
}

.news-index__link:hover .news-index__heading {
  color: #0078ac;
}

.news-index__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.7rem;
  color: #6b6e72;
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  letter-spacing: 0.02em;
}
.news-index__meta dd {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.news-index__meta dd + dd::before {
  content: "|";
  margin: 0 0.45rem;
  color: var(--color-border);
  font-weight: 400;
}
.news-index__meta a {
  color: #6b6e72;
  text-decoration: none;
}
.news-index__meta a:hover {
  color: var(--link-hover-color);
}

.news-index__content .mod-articles-tags {
  margin-top: 0.35rem;
}

.news-index__excerpt {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b6e72;
}

.news-index__arrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #75787c;
  transition: color 0.2s, transform 0.2s;
}

.news-index__link:hover .news-index__arrow {
  color: #0078ac;
  transform: translateX(3px);
}

.news-index__item > article > .readmore {
  padding: 0 0 clamp(0.5rem, 1vw, 0.75rem);
}

.news-index__item .readmore a {
  font-family: var(--cassiopeia-font-family-headings, "Barlow", sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--link-color);
  text-decoration: none;
}

.news-index__item .readmore a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}


/* ==========================================================================
   Motion
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  @keyframes newsRise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .news-lead {
    animation: newsRise 0.45s ease 0.05s both;
  }

  .news-index__item:nth-child(1) {
    animation: newsRise 0.4s ease 0.15s both;
  }

  .news-index__item:nth-child(2) {
    animation: newsRise 0.4s ease 0.25s both;
  }

  .news-index__item:nth-child(3) {
    animation: newsRise 0.4s ease 0.35s both;
  }

  .news-index__item:nth-child(4) {
    animation: newsRise 0.4s ease 0.45s both;
  }

  .news-index__item:nth-child(5) {
    animation: newsRise 0.4s ease 0.55s both;
  }
}