.review-ai-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  justify-content: center;
  padding: 20px;
}

.review-ai-list a {
  text-decoration: none;
  color:#1a2238;
}

.review-ai-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 16px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.review-ai-card:hover {
  background: #FFC600;
}

.review-ai-thumb img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 12px;
  transform: scale(-1, 1);
}

.review-ai-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1a2238;
}

.review-ai-basic {
  text-align: left;
}

.review-ai-basic ul {
  list-style: none;
  padding: 20px;
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .review-ai-list {
    gap: 20px;
    justify-content: flex-start;
  }
}
