/* === Studio & Google Reviews Section === */

.studio-reviews {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.studio-reviews-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  justify-content: center;
}

.studio-reviews-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.studio-reviews-table tr {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Bild links, Text rechts */
  align-items: center;
  gap: 60px; /* Abstand zwischen Spalten */
}

.studio-col-left,
.studio-col-right {
  vertical-align: middle;
}

.studio-col-left img {
  width: 100%;
  height: auto;
  border-radius: 24px; /* abgerundete Ecken */
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255,255,255,0.15);
  display: block;
}

.img-placeholder {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 24px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.reviews-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: left;
}

.review-card {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stars {
  color: #ffd700;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

/* Mobile Anpassung */
@media (max-width: 900px) {
  .studio-reviews-wrapper {
    padding: 0 20px;
  }

  .studio-reviews-table tr {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-title {
    text-align: center;
  }
}
