.google-trust-card {
  width: min(100%, 1080px);
  margin: 58px auto 0;
  padding: 28px;
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(251, 248, 242, 0.16);
  background: rgba(251, 248, 242, 0.055);
  box-shadow: 0 28px 70px -54px rgba(0, 0, 0, 0.8);
}

.google-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: #4285f4;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.google-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blush);
}

.google-trust-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--paper);
}

.google-trust-rating strong {
  font-family: var(--display);
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.google-trust-rating strong::after {
  content: "★★★★★";
  display: inline-block;
  margin-left: 12px;
  color: #fbbc04;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  transform: translateY(-8px);
}

.google-trust-rating span {
  color: rgba(251, 248, 242, 0.76);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.google-trust-copy p {
  max-width: 46ch;
  color: rgba(251, 248, 242, 0.78);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
}

.google-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: 304px;
  overflow-y: auto;
  padding-right: 8px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(251, 248, 242, 0.45) rgba(251, 248, 242, 0.08);
  scrollbar-width: thin;
}

.google-review-list::-webkit-scrollbar {
  width: 8px;
}

.google-review-list::-webkit-scrollbar-track {
  background: rgba(251, 248, 242, 0.08);
}

.google-review-list::-webkit-scrollbar-thumb {
  background: rgba(251, 248, 242, 0.42);
}

.google-review {
  min-height: 136px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(251, 248, 242, 0.14);
  background: rgba(251, 248, 242, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.google-review blockquote {
  margin: 0;
  color: rgba(251, 248, 242, 0.88);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.google-review figcaption {
  margin-top: 14px;
  color: var(--blush);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.google-trust-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 18px;
}

.google-trust-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(251, 248, 242, 0.28);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.google-trust-actions a:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

@media (max-width: 980px) {
  .google-trust-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 28px 22px;
  }

  .google-trust-rating {
    justify-content: center;
  }

  .google-review-list {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 430px;
    padding-right: 6px;
  }

  .google-trust-copy p {
    font-size: 18px;
  }

  .google-trust-actions {
    grid-column: auto;
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .google-trust-actions a {
    width: min(100%, 280px);
  }
}
