<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.widgets-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px;
  margin-bottom: 40px;
}

.coffees-gr-reviews-container {
  width: calc(50% - 10px);
  max-width: 600px;
  margin: 5px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
}

.coffees-gr-reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coffees-gr-reviews-logo-container {
  width: 100px;
  height: 100px;
  /* margin-bottom: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffees-gr-reviews-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100px;
  max-height: 100px;
}

.coffees-gr-reviews-header h2 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.coffees-gr-reviews-count {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  display: inline-flex; /* Align star and count */
  align-items: center;
}

.coffees-gr-reviews-view-all-link {
  font-size: 14px;
  color: #f60;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #f0f8ff;
}

.coffees-gr-reviews-view-all-link:hover {
  text-decoration: underline;
}

.coffees-gr-reviews-star {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0px 3px 3px 3px; /* Reduced margin */
  color: #ffc107;
}

.coffees-gr-reviews-star::before {
  position: absolute;
  top: 0;
  left: 3px;
  display: block;
  content: '\2605';
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .coffees-gr-reviews-container {
    width: 100%;
    max-width: none;
    padding: 20px;
    margin: 10px auto;
  }
  .widgets-container {
    margin-bottom: 5px;
    margin-top: 20px;
  }  
}</pre></body></html>