.reviews {
  padding: 2em 0; /*display:grid*/
  grid-template-columns: minmax(1em, 1fr) minmax(auto, 1200px) minmax(1em, 1fr);
  justify-content: center;
  background: var(--arthurMurrayBlue);
  color: var(--white);
}
.reviews h2 {
  grid-column: 2/3;
  /* color: var(--darkgray); */
  text-align: center;
}
.review-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  grid-column: 2/3;
}
@media screen and (min-width: 600px) {
  @media not all and (-webkit-min-device-pixel-ratio: 0),
    not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .review {
        margin: 0.5em;
      }
    }
  }
}
.review {
  color: #000;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--lightgray);
  padding: 1em;
  width: 100%;
  flex: 2 1 300px;
  box-shadow: -1px 0 10px var(--lightgray);
  max-width: 370px;
}
.review blockquote {
  display: grid;
  grid-row-gap: 0.5em;
  row-gap: 0.5em;
}
.review,
.review blockquote,
.review-date {
  font-family: Helvetica, Arial, sans-serif;
}
.review-cite {
  display: grid;
  grid-template-columns: 42px 1fr;
  -moz-column-gap: 6px;
  grid-column-gap: 6px;
  column-gap: 6px;
  grid-column: 1/2;
  grid-row: 1/3;
}
.gravatar {
  display: block;
  width: 41px;
  border-radius: 25px;
  border: 0.5px solid var(--lightblue);
  margin: 0;
}
.gravatar-link {
  display: block;
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
  margin: 0;
}
.review-cite cite {
  display: block;
  grid-column: 2/3;
  grid-row: 1;
  font-size: 79%;
  font-weight: 700;
  align-self: flex-end;
  margin-bottom: -4px;
  font-style: normal;
}
.review-cite p {
  grid-column: 2/3;
  grid-row: 2;
  font-size: 69%;
  vertical-align: top;
  margin: -4px 0 0;
  font-weight: 500;
}
.review-cite p a {
  text-decoration: none;
  color: #727272;
}
.review-cite p a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.fb-logo {
  color: #1877f2;
  font-size: 23px;
}
.g-logo {
  width: 23px;
}
.g-logo-link {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-bottom: 0;
}
.g-logo-link:hover {
  cursor: pointer;
}
.quote {
  font-size: 77%;
  line-height: 1.4em;
  margin: 0;
  grid-row: 3/4;
  font-family: Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 1043px) {
  .reviews {
    padding: 5em 0;
  }
  .reviews-container {
    padding: 5em 0 6em;
  }
  .review {
    padding: 1em;
  }
}

#google-reviews {
  display: grid;
  grid-template-columns: repeat(4, 238px);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 2 colonne sotto gli 1000px */
@media (max-width: 1000px) {
  #google-reviews {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}

/* 1 colonna sotto i 600px (4 righe) */
@media (max-width: 600px) {
  #google-reviews {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
}

.gr-review {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  background: #f9f9f9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.gr-author {
  font-weight: 600;
  margin-bottom: 4px;
  color: black;
}
.gr-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 6px;
}
.gr-stars {
  color: #f5a623;
  font-size: 0.95em;
  letter-spacing: 1px;
}
.gr-text {
  line-height: 1.4;
  color: black;
}
.gr-toggle a {
  color: #007bff;
  text-decoration: underline;
  font-size: 0.9em;
  cursor: pointer;
}
