@charset "UTF-8";
@font-face {
  font-family: Merriweather;
  src: url(../fonts/Merriweather/Merriweather_120pt-Regular.ttf);
}
*, html {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

.unselectable {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.top {
  top: 0;
}

.bottom {
  bottom: 0;
}

/* Header -START- */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30vh; /* Gesamthöhe inkl. Streifen */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo-left {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}

.stripe {
  z-index: -2;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2vh;
  background-color: #009e45;
}

.center {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  text-align: center;
  height: calc(100% - 4vh);
}

.center img {
  max-height: 100%;
  width: auto;
}

.center h1 {
  font-size: 6vh;
  display: inline-block;
  text-align: left;
  font-weight: bold;
  font-family: Merriweather;
  word-spacing: 1vh;
}

/* Header -END- */
/* Navbar -START- */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2.5vh;
}

.navbar a {
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.navbar a.active {
  color: #009e45;
  border-bottom: 3px solid #009e45;
}

.navbar a:hover {
  color: #009e45;
}

/* Navbar -END- */
.outer {
  display: flex;
  justify-content: center; /* horizontal zentrieren */
}

.inner {
  flex: 1; /* darf sich anpassen */
  max-width: 1200px; /* gleiche Max-Breite wie Navbar */
  padding: 0 16px; /* Abstand links/rechts */
  box-sizing: border-box;
}

.news {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #009e45;
  width: 100%;
  color: white;
  border-radius: 1vh;
  height: 7.5vh;
  font-size: 5vh;
  text-decoration: none;
}

.news:hover {
  background-color: rgba(0, 158, 69, 0.9);
}

.articles {
  display: flex;
  gap: 24px; /* Abstand zwischen den Artikeln */
  flex-wrap: wrap; /* bei kleiner Breite umbrechen */
  margin-top: 32px;
}

.card {
  flex: 1 1 calc(33.333% - 24px); /* drei pro Reihe, mit Abstand */
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h2 {
  margin: 16px;
  font-size: 1.25rem;
}

.card p {
  margin: 0 16px 16px 16px;
  flex-grow: 1;
  color: #333;
}

.card a {
  margin: 0 16px 16px 16px;
  color: #009e45;
  text-decoration: none;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */