/* Hepp Service – Dachseite. Gemeinsame Bausteine in /shell/components.css */

/* Über-uns-Textblock */
body > main > section.about > div.about__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

body > main > section.about p.about__text {
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

body > main > section.about p.about__text:last-child {
  margin-bottom: 0;
}

/* Betriebe – zwei große Karten */
body > main > section.betriebe > div.betrieb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  max-width: 900px;
  margin: 0 auto;
}

body > main > section.betriebe article.betrieb-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body > main > section.betriebe article.betrieb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 175, 105, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 50px rgba(66, 175, 105, 0.08);
}

body > main > section.betriebe div.betrieb-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 16px;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(66, 175, 105, 0.18) 0%, rgba(245, 206, 33, 0.1) 100%);
  border: 1px solid rgba(66, 175, 105, 0.25);
}

body > main > section.betriebe h3.betrieb-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

body > main > section.betriebe span.betrieb-card__subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bh-gruen-hell);
  margin-bottom: 0.9rem;
}

body > main > section.betriebe p.betrieb-card__text {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex: 1;
}
