.bd-reviews-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.bd-reviews-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.bd-reviews-subtitle {
  text-align: center;
  color: #777;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.bd-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.bd-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.bd-review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.bd-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bd-review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bd-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2fb5d2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bd-review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.bd-review-source {
  font-size: 0.8rem;
  color: #999;
}

.bd-review-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.bd-star {
  font-size: 1.1rem;
  color: #ddd;
}

.bd-star--filled {
  color: #f5a623;
}

.bd-review-content {
  flex: 1;
}

.bd-review-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.bd-review-date {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #aaa;
}

@media (max-width: 576px) {
  .bd-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .bd-review-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}
