@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #191c16;
  background-color: #f5f7f2;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: #191c16;
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #4a9130;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #6db250;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
}

blockquote {
  border-left: 3px solid #4a9130;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #f1f9ee;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #525a4e;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.875em;
  background: #eaede6;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: #c47a0e;
}

pre {
  background: #191c16;
  color: #f5f7f2;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background: none;
  color: inherit;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid #dce4d6;
  margin: 2rem 0;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
table th {
  background: #4a9130;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: left;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dce4d6;
}
table tr:nth-child(even) td {
  background: #eaede6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
}

.site-main {
  padding: 3rem 0;
  min-height: calc(100vh - 72px - 160px);
}

.main-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .main-with-sidebar {
    grid-template-columns: 1fr;
  }
}

.main-content {
  min-width: 0;
}

@keyframes feather-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  30% {
    transform: translateY(-5px) rotate(-2deg) scale(1.02);
  }
  60% {
    transform: translateY(2px) rotate(1.5deg) scale(0.99);
  }
}
.nav-feather {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  animation: feather-float 4.5s ease-in-out infinite;
  display: block;
}

.site-nav {
  background: #ffffff;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #4a9130;
  box-shadow: 0 1px 12px rgba(25, 28, 22, 0.06);
}
.site-nav .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.site-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand:hover {
  text-decoration: none;
}
.site-brand__text {
  display: flex;
  flex-direction: column;
}
.site-brand__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #191c16;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.site-brand__title em {
  font-style: italic;
  font-weight: 300;
  color: #4a9130;
}
.site-brand__tagline {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.6rem;
  color: #525a4e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 72px;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  color: #525a4e;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: color 150ms ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #4a9130;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-links a:hover {
  color: #191c16;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: #4a9130;
  font-weight: 600;
}
.nav-links a.active::after {
  transform: scaleX(1);
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 150ms ease;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #191c16;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
  transform-origin: center;
}
.nav-burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-burger:hover {
  background: #e6f4de;
}
@media (max-width: 600px) {
  .nav-burger {
    display: flex;
  }
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid #4a9130;
  box-shadow: 0 8px 24px rgba(25, 28, 22, 0.1);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.nav-mobile a {
  display: block;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #525a4e;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  border-left: 3px solid transparent;
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: #e6f4de;
  color: #4a9130;
  border-left-color: #4a9130;
}
@media (max-width: 600px) {
  .nav-mobile {
    display: block;
  }
}

.hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 95% 0%, rgba(74, 145, 48, 0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 5% 100%, rgba(74, 145, 48, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero-feather-wrap {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-feather-wrap {
    display: none;
  }
}

@keyframes hero-feather-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.14;
  }
  30% {
    transform: translateY(-10px) scale(1.02);
    opacity: 0.16;
  }
  60% {
    transform: translateY(4px) scale(0.99);
    opacity: 0.12;
  }
}
.hero-feather {
  width: 100%;
  height: 100%;
  animation: hero-feather-float 4.5s ease-in-out infinite;
  display: block;
}

.hero__kicker {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a9130;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #4a9130;
  flex-shrink: 0;
}

.hero__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #191c16;
  margin-bottom: 1.5rem;
  max-width: 520px;
  letter-spacing: -0.02em;
}
.hero__title strong {
  font-weight: 600;
  font-style: italic;
  color: #4a9130;
}

.hero__desc {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: #525a4e;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.hero__chip {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #dce4d6;
  color: #525a4e;
  background: #ffffff;
}
.hero__chip--forest {
  background: #e6f4de;
  border-color: #e6f4de;
  color: #4a9130;
  font-weight: 600;
}
.hero__chip--earth {
  background: #fdf0d5;
  border-color: #fdf0d5;
  color: #c47a0e;
  font-weight: 600;
}
.hero__chip--sky {
  background: #ddeef7;
  border-color: #ddeef7;
  color: #1a6a96;
  font-weight: 600;
}

.hero__divider {
  height: 1px;
  background: #dce4d6;
}

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid #dce4d6;
  padding: 2.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(to right, transparent, #f1f9ee);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a9130;
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #191c16;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.page-hero__subtitle {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #525a4e;
  margin: 0;
}

.site-footer {
  background: #191c16;
  color: rgba(245, 247, 242, 0.7);
  padding: 2rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer h4 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.site-footer p {
  font-size: 0.875rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.site-footer a {
  color: #e6f4de;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .footer-roles {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: rgba(245, 247, 242, 0.55);
  line-height: 1.6;
}
.site-footer .footer-roles span {
  display: block;
}
.site-footer .footer-roles span::before {
  content: "↳ ";
  color: #6db250;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 247, 242, 0.08);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 247, 242, 0.35);
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

.sidebar-section {
  background: #ffffff;
  border: 1px solid #dce4d6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-section h3 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8c9589;
  margin-bottom: 1rem;
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dce4d6;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #4a9130;
}
.page-header h1 {
  margin-bottom: 0.25rem;
}
.page-header .page-subtitle {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: #525a4e;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.post-card {
  background: #ffffff;
  border: 1px solid #dce4d6;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease, border-color 250ms ease;
}
.post-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: #4a9130;
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 250ms ease;
}
.post-card:hover {
  box-shadow: 0 4px 20px rgba(25, 28, 22, 0.07);
  transform: translateY(-2px);
  border-color: rgba(74, 145, 48, 0.25);
}
.post-card:hover::before {
  transform: scaleY(1);
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.post-card__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.post-card__title a {
  color: #191c16;
  text-decoration: none;
}
.post-card__title a:hover {
  color: #4a9130;
}
.post-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.post-card__location {
  font-size: 0.82rem;
  color: #525a4e;
  margin-bottom: 0.5rem;
}
.post-card__excerpt {
  font-size: 0.9rem;
  color: #525a4e;
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.post-card__themas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.post-type {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
}
.post-type--wandeling {
  background: rgba(61, 138, 32, 0.12);
  color: #3d8a20;
}
.post-type--excursie {
  background: rgba(26, 120, 160, 0.12);
  color: #1a78a0;
}
.post-type--avondles {
  background: rgba(94, 42, 150, 0.12);
  color: #5e2a96;
}
.post-type--biologisch-moment {
  background: rgba(180, 106, 16, 0.12);
  color: #b46a10;
}
.post-type--vijf-minuten {
  background: rgba(160, 48, 48, 0.12);
  color: #a03030;
}
.post-type--artikel {
  background: rgba(90, 110, 58, 0.12);
  color: #5a6e3a;
}

.post-date {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  color: #8c9589;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag-pill {
  display: inline-block;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 9px;
  border-radius: 100px;
  background: var(--tag-color, #e6f4de);
  color: #191c16;
  text-decoration: none;
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

a.tag-pill {
  cursor: pointer;
}
a.tag-pill:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  text-decoration: none;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dce4d6;
  border-radius: 8px;
}
.filter-bar .filter-label {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #8c9589;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-right: 0.25rem;
}
.filter-bar .filter-separator {
  color: #dce4d6;
  margin: 0 0.25rem;
  user-select: none;
}

.filter-btn {
  background: #f5f7f2;
  border: 1px solid #dce4d6;
  border-radius: 100px;
  padding: 3px 12px;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  color: #525a4e;
}
.filter-btn:hover:not(.active) {
  background: #e6f4de;
  color: #4a9130;
  border-color: #e6f4de;
}
.filter-btn.active {
  background: #4a9130;
  color: #fff;
  border-color: #4a9130;
}
.filter-btn.tag-pill {
  border-color: transparent;
  color: #191c16;
}
.filter-btn.tag-pill.active {
  box-shadow: 0 0 0 2px #191c16;
}
.filter-btn.tag-pill:hover {
  opacity: 0.8;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dce4d6;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.post-location {
  font-size: 0.85rem;
  color: #525a4e;
}
.post-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
@media (max-width: 600px) {
  .post-title {
    font-size: 1.5rem;
  }
}
.post-themas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.post-content h2 {
  color: #4a9130;
}
.post-content h3 {
  color: #191c16;
}
.post-content .soorten-lijst {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  list-style: none;
  margin-left: 0;
  padding: 1rem;
  background: #f1f9ee;
  border-radius: 8px;
  border: 1px solid #e6f4de;
}
.post-content .soorten-lijst li {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0;
}
.post-content .soorten-lijst li::before {
  content: "·";
  margin-right: 0.25rem;
  color: #6db250;
  font-style: normal;
}
.post-source {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #dce4d6;
  font-size: 0.875rem;
  color: #525a4e;
}
.post-source a {
  color: #4a9130;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.project-card {
  background: #ffffff;
  border: 1px solid #dce4d6;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.project-card:hover {
  box-shadow: 0 4px 16px rgba(25, 28, 22, 0.07);
  transform: translateY(-2px);
}
.project-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.project-card__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #191c16;
}
.project-card__desc {
  font-size: 0.9rem;
  color: #525a4e;
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.project-card__themas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.project-card__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.project-card__link {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid currentColor;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.project-card__link--primary {
  background: #4a9130;
  color: #fff;
  border-color: #4a9130;
}
.project-card__link--primary:hover {
  background: #6db250;
  color: #fff;
  text-decoration: none;
}
.project-card__link--secondary {
  color: #4a9130;
  background: transparent;
}
.project-card__link--secondary:hover {
  background: #e6f4de;
  color: #4a9130;
  text-decoration: none;
}

.artikel-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #e6f4de;
  border-left: 4px solid #4a9130;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.artikel-callout__text {
  font-size: 0.9rem;
  color: #525a4e;
  margin: 0;
}
.artikel-callout__text strong {
  display: block;
  font-size: 1rem;
  color: #191c16;
  margin-bottom: 2px;
}
.artikel-callout__link {
  flex-shrink: 0;
  background: #4a9130;
  color: #fff;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease;
}
.artikel-callout__link:hover {
  background: #6db250;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 600px) {
  .artikel-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

.waarnemingen-widget .loading {
  font-size: 0.85rem;
  color: #8c9589;
  font-style: italic;
}

.waarnemingen-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.waarneming-item {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dce4d6;
}
.waarneming-item:last-child {
  border-bottom: none;
}
.waarneming-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.waarneming-item .waarneming-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.waarneming-item .waarneming-info strong {
  font-size: 0.82rem;
  color: #191c16;
  font-weight: 600;
}
.waarneming-item .waarneming-info span {
  font-size: 0.72rem;
  color: #8c9589;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

.waarnemingen-link {
  display: block;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
  margin-top: 0.5rem;
  color: #4a9130;
  letter-spacing: 0.02em;
}

.waarnemingen-fallback {
  font-size: 0.85rem;
}
.waarnemingen-fallback a {
  color: #4a9130;
}

.home-intro {
  padding: 2rem 0 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 3px solid #4a9130;
}

.home-kicker {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a9130;
  margin-bottom: 0.5rem;
}

.home-lead {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  line-height: 1.5;
  color: #191c16;
  margin-bottom: 0;
  max-width: 640px;
  font-weight: 400;
}
.home-lead strong {
  color: #4a9130;
  font-weight: 600;
}

.home-section {
  margin-bottom: 3rem;
}
.home-section h2 {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c9589;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dce4d6;
}

.groeiplan-blok {
  border-left: 3px solid #4a9130;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 0 8px 8px 0;
}
.groeiplan-blok.blok-2 {
  border-color: #c47a0e;
}
.groeiplan-blok.blok-3 {
  border-color: #1a78a0;
}
.groeiplan-blok.blok-4 {
  border-color: #5e2a96;
}
.groeiplan-blok.blok-5 {
  border-color: #6db250;
}
.groeiplan-blok h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.opleiding-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.opleiding-info__item {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dce4d6;
  border-radius: 8px;
}
.opleiding-info__item label {
  display: block;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #8c9589;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.opleiding-info__item strong {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.blok-badge {
  display: inline-block;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  background: #eaede6;
  color: #525a4e;
  margin-bottom: 0.5rem;
}

.blok-section {
  margin-bottom: 3rem;
}
.blok-section h2 {
  margin-top: 0;
}

/*# sourceMappingURL=main.css.map */