.testimonial-container {
  display: flex;
  justify-content: center;
  /* Zentriert horizontal */
  flex-wrap: wrap;
  /* Erlaubt Zeilenumbruch bei kleineren Bildschirmen */
  gap: 20px;
  /* Abstand zwischen Testimonials */
  padding: 40px 0;
  /* Abstand oben und unten für besseres Layout */
}

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #062F4F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 10px;
  max-width: 47%;
  min-width: 250px;
  text-align: left;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #d2652d;
  width: 100%;
}

.snip1533 figcaption {
  padding: 8%;
}

.snip1533 figcaption:before {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #d2652d;
  font-family: 'FontAwesome';
  font-size: 32px;
  font-style: normal;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 60px;
}

.snip1533 h3 {
  color: var(--color-dark-blue);
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  color: var(--color-dark-blue);
  font-weight: 400;
  margin: 0;
}

.snip1533 a:hover {
  text-decoration: underline;
}

.snip1533 blockquote {
  font-weight: 300;
  margin: 0 0 20px;
}

@media (max-width: 768px) {
  .snip1533 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #062F4F;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 10px;
    max-width: 100%;
    min-width: 250px;
    text-align: left;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #d2652d;
    width: 100%;
  }
}