/**
 * Testimonial Grid Styles
 */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-box {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.center-testimonial {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.center-box {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-placeholder {
  width: 100%;
  border-radius: 9px 9px 0 0; /* 9px statt 10px wegen des 1px Rahmens */
  flex-grow: 1;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px 9px 0 0; /* 9px statt 10px wegen des 1px Rahmens */
  position: absolute;
  top: 0;
  left: 0;
}

.no-image {
  width: 100%;
  height: 100%;
  background-color: #cccccc;
}

.testimonial-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author {
  font-weight: bold;
  margin-bottom: 5px;
}

.stars {
  color: #FFD700;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.content {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .center-testimonial {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  
  .image-placeholder {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .center-testimonial {
    grid-column: 1;
    grid-row: auto;
  }
  
  .image-placeholder {
    min-height: 200px;
  }
}