/* [fbm_google_reviews] — Google-style review cards */
.fbm-gr {
  --gr-border: #dadce0;
  --gr-text: #202124;
  --gr-muted: #70757a;
  --gr-star: #fbbc04;
  margin: 0 0 40px;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}

.fbm-gr__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--gr-border);
  border-radius: 8px;
  background: #fff;
}
.fbm-gr__summary > .fbm-gr__glogo { width: 36px; height: 36px; flex: none; }
.fbm-gr__summary-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}
.fbm-gr__summary-score { font-size: 32px; font-weight: 500; line-height: 1; color: var(--gr-text); }
.fbm-gr__summary-count { flex-basis: 100%; font-size: 14px; color: var(--gr-muted); }

.fbm-gr__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fbm-gr__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--gr-border);
  border-radius: 8px;
  background: #fff;
  color: var(--gr-text);
  transition: box-shadow .15s ease;
}
.fbm-gr__card:hover { box-shadow: 0 1px 6px rgba(32, 33, 36, .18); }

.fbm-gr__head { display: flex; align-items: center; gap: 12px; }
.fbm-gr__avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: #e8eaed;
}
.fbm-gr__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6a0d06;
  color: #fffdf1;
  font-size: 18px;
  font-weight: 500;
}
.fbm-gr__who { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.fbm-gr__name { font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--gr-text); }
.fbm-gr__time { font-size: 13px; line-height: 1.3; color: var(--gr-muted); }
.fbm-gr__gicon { flex: none; line-height: 0; }
.fbm-gr__gicon .fbm-gr__glogo { width: 22px; height: 22px; }

.fbm-gr__stars { display: inline-flex; gap: 2px; line-height: 0; }
.fbm-gr__stars svg { width: 18px; height: 18px; fill: var(--gr-star); }
.fbm-gr__stars svg.is-empty { fill: #dadce0; }

.fbm-gr__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--gr-text); }

.fbm-gr__reply {
  margin-top: 4px;
  padding: 10px 14px;
  border-left: 3px solid var(--gr-border);
  font-size: 14px;
  color: var(--gr-muted);
}
.fbm-gr__reply p { margin: 4px 0 0; }

@media (max-width: 767px) {
  .fbm-gr__grid { grid-template-columns: 1fr; }
  .fbm-gr__card { padding: 16px; }
}

/* Load more: extra cards are in the HTML but hidden until revealed (see js/google-reviews.js) */
.fbm-gr__card--extra { display: none; }
.fbm-gr__card--extra.is-shown { display: flex; }
.fbm-gr__more-wrap { margin-top: 28px; text-align: center; }
.fbm-gr__more {
  padding: 12px 32px;
  border: 1px solid #6a0d06;
  border-radius: 24px;
  background: #6a0d06;
  color: #fffdf1;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.fbm-gr__more:hover,
.fbm-gr__more:focus-visible { background: #fffdf1; color: #6a0d06; }

/* Reviews page text: lead paragraph and the "about" block below the reviews */
.fbm-gr-lead { margin: 0 0 28px; font-size: 19px; line-height: 1.6; color: #333; }
.fbm-gr-about {
  margin-top: 8px;
  padding: 28px 32px;
  border: 1px solid #d9c49b;
  border-radius: 8px;
  background: #fffdf1;
}
.fbm-gr-about > :first-child { margin-top: 0; }
.fbm-gr-about > :last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .fbm-gr-lead { font-size: 17px; }
  .fbm-gr-about { padding: 20px; }
}
