.reviews-section {
  padding: 60px 0;
  border-radius: var(--radius-small);
  overflow: hidden;
}

/* INNER WRAPPER (wichtig für sauberes Layout) */
.reviews-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADINGS */
.reviews-headline {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.reviews-section .subheadline {
  text-align: center;
  margin-bottom: 60px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 40px;
}

/* CONTENT */
.reviews-content {
  text-align: center;
  z-index: 2;
  min-height: 130px;
}

.reviews-content .subheadline {
  margin-bottom: 10px;
}

.reviews-text p {
  font-size: calc(1.3rem + 0.4vw) !important;
  line-height: 1.4;
  font-family: "Harbour-Light", sans-serif !important;
}

/* IMAGES */
.reviews-img {
  width: 100%;
}

.reviews-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-small);
  max-height: 450px;
}

/* NAV */
.reviews-slider-ui {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.reviews-slider-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-hit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.reviews-hit .dot {
  width: 10px;
  height: 10px;
  background: var(--color-black);
  border-radius: 50%;
}

.reviews-hit .line {
  width: 42px;
  height: 2px;
  background: var(--color-black);
}

/* MOBILE */
@media (max-width: 1199px) {
  .reviews-section {
    padding: 40px 0;
  }

  .reviews-inner {
    padding: 0 12px;
  }

  .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .reviews-content {
    order: 1;
    width: 100%;
  }

  .reviews-img-left {
    order: 2;
    width: calc(50% - 8px);
  }

  .reviews-img-right {
    order: 3;
    width: calc(50% - 8px);
  }

  .reviews-img img {
    aspect-ratio: 4 / 3;
  }
}
