/* ===== Google recenze – horizontální slider, čistý minimalistický styl ===== */

#grw-reviews,
.grw-reviews {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px;
  font-family: inherit;
}

.grwc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.grwc-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grwc-google-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.grwc-title {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
}

.grwc-summary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #666;
  margin-top: 2px;
}

.grwc-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.grwc-all-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #00740f;
  text-decoration: none;
  white-space: nowrap;
}

.grwc-all-link:hover {
  text-decoration: underline;
}

/* slider */
.grwc-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.grwc-slider::-webkit-scrollbar {
  height: 6px;
}

.grwc-slider::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.grwc-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.grwc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grwc-date {
  font-size: 12px;
  color: #999;
}

.grwc-comment {
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grwc-author {
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1a1a;
}

@media (max-width: 640px) {
  #grw-reviews,
  .grw-reviews {
    margin: 32px auto;
    padding: 0 16px;
  }

  .grwc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .grwc-title {
    font-size: 16px;
  }

  .grwc-card {
    width: 220px;
    padding: 14px;
  }

  .grwc-slider {
    gap: 10px;
  }
}
