:root {
  --bg: #f7f9f6;
  --card: #ffffff;
  --border: #e3e8e5;
  --text: #1f2a24;
  --muted: #5f6f66;
  --accent: #5f8f72;
  --accent-soft: #e4efe8;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  --max: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}



img {
  max-width: 100%;
  height: auto;
}

.page,
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.site-header {
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
}


.nav a {
  text-decoration: none;
  color: var(--text);
  padding-bottom: 4px;
}

.nav a.active {
  font-weight: 600;
  border-bottom: 2px solid #222;
}


.site-footer {
  margin-top: 32px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 28px;
  margin-bottom: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col h4 {
  margin: 0 0 2px;
  font-size: 13px;
  color: var(--text);
}

.footer-col a {
  text-decoration: none;
  font-size: 13px ;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-note {
  margin: 4px 0 8px;
}

.footer-meta {
  font-size: 11px;
}

.legal-page {
  max-width: 800px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.legal-page p {
  margin-top: 20px;
}

.bullit-point {
  margin-top: 50px;
  border-left: 5px solid var(--accent);
  padding-left: 10px;
}

.text-small {
  font-size: 80%;
}

.text-italic {
  font-style: italic;
}

.mt-2 {
  margin-top: 25px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: var(--text);
  padding: 14px 16px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
}

.cookie-banner__content {
  max-width: 680px;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner__content a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
}

.cookie-button--accept {
  background: var(--text);
  border-color: var(--text);
  color: #ffffff;
}

.cookie-settings-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: var(--text);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  z-index: 9999;
  transition: opacity 0.3s ease;
  border: 1px solid var(--border);
}

.cookie-settings-icon:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }
}


/* Newsletter Block */
.newsletter{
  /*background: var(--card);*/
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.newsletter h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.newsletter p{
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}

.newsletter .muted{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Formular */
.newsletter form{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter input[type="email"]{
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.newsletter input[type="email"]::placeholder{
  color: #9aa5a0;
}

/* Button ruhig, nicht verkäuferisch */
.newsletter button{
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter button:hover{
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 520px){
  .newsletter form{
    flex-direction: column;
  }

  .newsletter button{
    width: 100%;
  }
}


.hidden {
  display: none;
}

.show{
display: block;
}


.editorial-notice {
  max-width: var(--max);
  margin: 0 auto 14px;
  padding: 12px 16px;
  font-size: 14px;
  /*background: var(--accent-soft);*/
  background: #dbd3f9;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #355a45;
}

.editorial-notice a {
  font-weight: 600;
  margin-left: 6px;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .editorial-notice {
    font-size: 13px;
  }
}

.num{
      width:26px; height:26px;
      border-radius:999px;
      background:rgba(53,90,69,.10);
      color:var(--brand);
      display:flex; align-items:center; justify-content:center;
      font-weight:800; font-size:13px;
      flex:0 0 26px;
      margin-top:1px;
}
   
