/* Home teasers */
.home-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 1.2rem;
}

.home-teaser-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.05rem 1.05rem 1.1rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-teaser-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: var(--border-strong);
}

.home-teaser-card h3 {
  color: var(--primary-green);
  line-height: 1.2;
}

.home-teaser-card p {
  color: var(--text-soft);
  margin: 0;
}

.home-teaser-card .btn {
  justify-self: start;
}

.section--leistungen .home-teaser-grid {
  align-items: stretch;
}

.section--leistungen .home-teaser-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section--leistungen .home-teaser-card h3 {
  margin: 0 0 0.15rem;
}

.section--leistungen .home-teaser-card p {
  margin: 0;
}

.section--leistungen .home-teaser-card p:last-of-type {
  margin-bottom: 0.85rem;
}

.section--leistungen .home-teaser-card .btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  position: relative;
  padding-right: 0;
}

.section--leistungen .home-teaser-card .btn,
.section--vorteile .home-teaser-card .btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  color: #274126;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
  text-decoration-color: rgba(39, 65, 38, 0.5);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.section--vorteile .home-teaser-card p .btn {
  display: inline;
  padding: 0.02rem 0.08rem;
  margin-left: 0;
  font-weight: 700;
  line-height: inherit;
  white-space: normal;
  color: #1f3c21;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 60, 33, 0.45);
  border-radius: 4px;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.section--vorteile .home-teaser-card p .btn:hover {
  color: #1a301b;
  border-bottom-color: rgba(26, 48, 27, 0.85);
  background: rgba(193, 220, 175, 0.22);
}

.section--leistungen .home-teaser-card .btn::before,
.section--vorteile .home-teaser-card .btn::before {
  content: none;
}

.section--leistungen .home-teaser-card .btn:hover,
.section--vorteile .home-teaser-card .btn:hover {
  color: #1f3322;
  text-decoration-color: currentColor;
  transform: none;
  box-shadow: none;
}

.section--leistungen .home-teaser-card .btn::after {
  content: "";
  position: static;
  width: 0.95rem;
  height: 0.95rem;
  transform: translateX(0);
  background-color: currentColor;
  -webkit-mask: url("../../assets/img/SVG/arrow-left.svg") center / contain no-repeat;
  mask: url("../../assets/img/SVG/arrow-left.svg") center / contain no-repeat;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.section--leistungen .home-teaser-card .btn:hover::after {
  transform: translateX(-2px);
}

.home-cta-band {
  background: linear-gradient(180deg, rgba(230, 240, 227, 0.5) 0%, rgba(222, 234, 217, 0.45) 100%);
}

.home-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-cta-text {
  color: var(--text-soft);
  max-width: 56ch;
}


