.td-google-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  font-family: 'Arial', sans-serif;
  color: #c2c2c2;
}

.td-google-reviews .review {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1 1 calc(50% - 2rem);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  min-width: 280px;
  max-width: 100%;
  transition: opacity 0.3s ease;
  opacity: 1;
}


.td-google-reviews .reviewer {
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
}

.td-google-reviews .review-date {
  font-size: 0.9rem;
  color: #999;
  margin: 0.2rem 0 0.2rem;
  display: block;
}

.td-google-reviews .rating {
  color: #ce921b;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.td-google-reviews blockquote {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
  quotes: "“" "”";
}

.td-google-reviews blockquote::before {
  content: open-quote;
}

.td-google-reviews blockquote::after {
  content: close-quote;
}

.td-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.td-pagination button {
  background: #ce921b;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.td-pagination button:hover {
  background: #b37511;
}

.td-pagination ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.td-pagination a,
.td-pagination span {
  background: none;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.td-pagination .dots{
	color:unset;
}

.td-pagination .current {
  background: #b37511;
}

@media (max-width: 768px) {
  .td-google-reviews .review {
    flex: 1 1 100%;
  }
}
