
:root {
  color: #1b1f24;
  background: #f6f8fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #116149;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 56px;
}

.hero {
  padding: 34px 0;
  border-bottom: 1px solid #dfe6ee;
}

.eyebrow {
  margin: 0 0 8px;
  color: #6d7580;
  font-size: 0.82rem;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

h2 {
  margin-top: 0;
}

.section {
  margin-top: 28px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.article-card,
.cta-box,
details {
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.article-card a {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #116149;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.content {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
}

.cta-box {
  margin: 28px 0;
}

details + details {
  margin-top: 10px;
}
