.shop-the-looks__grid {
  display: flex;
}

.shop-the-looks__grid--slider {
  display: flex;
  overflow: hidden;
  gap: 0;
}

.shop-the-looks__item {
  flex-shrink: 0;
  list-style: none;
}

.review-card {
  background: #fff;
  padding-left: calc(var(--grid-horizontal-space) * 0.5);
  padding-right: calc(var(--grid-horizontal-space) * 0.5);
  border-radius: 8px;

}

.review-card__image {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-fit: var(--image-fill-type, cover);
  object-position: var(--image-object-position, center center);
}

.review-card__placeholder,
.image-fallback {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #999;
  flex: 1;
}

.placeholder-text {
  margin-top: 10px;
  font-size: 14px;
}

.review-card__author {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.4;
}

.review-card__content {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 3; */
  overflow: hidden;
  height: auto;
  
}

.btn {
  font-size: 16px;
  text-decoration-line: underline;
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.no-content {
  color: #999;
  font-style: italic;
}

.review-card__button {
  width: 100%;
  padding: 0.75rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.review-card__button:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.no-blocks-message {
  text-align: center;
  padding: 40px 20px;
}

.no-blocks-content {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.no-blocks-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.debug-tips {
  margin-top: 20px;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #000;
}

.debug-tips ul {
  margin-top: 10px;
  padding-left: 20px;
}

.debug-tips li {
  margin-bottom: 8px;
  color: #666;
}

@media (max-width: 959px) {
  .shop-the-looks__grid {
    grid-template-columns: repeat(var(--mobile-columns), 1fr);
  }

  .shop-the-looks__grid--mobile-slider {
    display: flex;
    overflow: hidden;
    gap: 0;
  }

  .review-card {
    padding-left: calc(var(--grid-horizontal-space) * 0.5);
    padding-right: calc(var(--grid-horizontal-space) * 0.5);
  }

  .review-card__image {
    aspect-ratio: 1/1;
  }

  .no-blocks-content {
    padding: 20px;
  }
}

@media screen and (min-width: 960px) {
  .grid-cols-4-desktop>* {
    flex: 0 0 auto;
    width: 25%;
  }

}

/* 滑块样式 */
.slider-buttons {
  display: flex;
  justify-content: center;
  /* margin-top: 2rem;
  gap: 1rem; */
}

.slider-button {
  /* background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button:hover {
  /* background: #000; */
  /* border-color: #000; */
  /* color: #fff; */
}

.image-with-text__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 959px) {
  .shop-the-looks__item {
    width: calc(100% / (var(--mobile-columns) + 0.5) + 1%);
  }
  .review-card__author{
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .review-card__content{
    font-size: 11px;
    line-height: 17px;
  }
  .btn{
    font-size: 12px;
  }
}

.section-padding {
  padding-top: 40px ;
  padding-bottom: 40px ;
}

.imageShow {
  flex: 1;
}