/* Reviews Integration Final CSS */

/* NEW styles for the map */
#reviews-map-container {
  height: 500px; /* This is essential for the map to be visible */
  width: 100%;
  margin-bottom: 30px; /* Adds space between the map and the reviews list */
  background-color: #f0f0f1; /* A fallback color while the map is loading */
  border: 1px solid #c3c4c7;
}

#reviews-map-container div[role="button"]:focus {
    outline: 0 !important;
}

.reviews-integration-wrapper {
  width: 100%;
  max-width: 100%;
  font-family: serif;
  color: #000;
}

.review-item {
  padding: 20px 0;
  border-bottom: 2px dotted #ccc;
  transition: background-color 0.5s ease; /* Smooth transition for click-highlight */
}
.review-item:last-child {
  border-bottom: none;
}

.review-headline {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 5px 0;
}

.review-author-line,
.review-time-ago {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.review-source-line {
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 15px 0;
}

.review-text-container {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
  padding: 0;
  border: none;
}

.review-quote-icon {
  font-size: 80px;
  line-height: 0.5;
  color: #ccc;
  margin-right: 10px;
  font-family: serif;
}

.review-text {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  padding-top: 10px; /* Align with quote icon */
}

.review-sub-ratings-container {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.review-sub-rating-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.review-sub-rating-item.overall {
  margin-bottom: 15px;
}

.review-stars {
  color: #f5c518; /* A vibrant yellow */
  font-size: 24px;
  letter-spacing: 2px;
}

.sub-rating-label {
  font-size: 20px;
  margin-left: 15px;
}