/* AY Natural Benefit-Leiste unter Hero-Karten */
.ay-benefits-inline {
  font-family: "Manrope", sans-serif;
  background: #FFF8F1;
  padding: 10px 20px 8px;
}

.ay-benefits-inline__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(90, 58, 42, 0.16);
  border-bottom: 1px solid rgba(90, 58, 42, 0.16);
}

.ay-benefits-inline__item {
  position: relative;
  padding: 18px 24px;
  text-align: center;
}

.ay-benefits-inline__item:not(:last-child) {
  border-right: 1px solid rgba(90, 58, 42, 0.14);
}

.ay-benefits-inline__kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(90, 58, 42, 0.58);
}

.ay-benefits-inline__item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #3B2118;
}

.ay-benefits-inline__item--highlight {
  background: linear-gradient(
    180deg,
    rgba(107, 79, 58, 0.075),
    rgba(107, 79, 58, 0.025)
  );
}

.ay-benefits-inline__item--highlight::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  height: 2px;
  background: #6B4F3A;
}

/* Tablet */
@media (max-width: 900px) {
  .ay-benefits-inline {
    padding: 10px 20px 8px;
  }

  .ay-benefits-inline__item {
    padding: 16px 16px;
  }

  .ay-benefits-inline__item strong {
    font-size: 14px;
  }
}

/* Mobile moderner Swipe-Slider */
@media (max-width: 767px) {
  .ay-benefits-inline {
    padding: 10px 20px 8px;
    overflow: hidden;
  }

  .ay-benefits-inline__inner {
    max-width: none;
    margin: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    padding: 0 18px 12px;
    border-top: none;
    border-bottom: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ay-benefits-inline__inner::-webkit-scrollbar {
    display: none;
  }

  .ay-benefits-inline__item {
    flex: 0 0 82%;
    scroll-snap-align: start;
    padding: 18px 18px;
    text-align: left;
    border: 1px solid rgba(90, 58, 42, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 24px rgba(70, 42, 28, 0.06);
  }

  .ay-benefits-inline__item:not(:last-child) {
    border-right: 1px solid rgba(90, 58, 42, 0.14);
  }

  .ay-benefits-inline__item--highlight {
    order: -1;
    background: linear-gradient(
      135deg,
      rgba(107, 79, 58, 0.12),
      rgba(255, 255, 255, 0.72)
    );
    border-color: rgba(107, 79, 58, 0.28);
  }

  .ay-benefits-inline__item--highlight::after {
    left: 18px;
    right: 18px;
    bottom: -1px;
    width: auto;
    height: 2px;
    transform: none;
    background: #6B4F3A;
  }

  .ay-benefits-inline__kicker {
    font-size: 10.5px;
    margin-bottom: 7px;
    letter-spacing: 0.12em;
  }

  .ay-benefits-inline__item strong {
    font-size: 14.5px;
    line-height: 1.3;
  }
}