/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:adv-reviews-grid (INDEX:1) */
.reviews-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;

  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media screen and (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.review-card:hover {
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.05),
    inset 0 0 0 1px #28c76e;
}

/* IMAGE */
.review-image {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 14px;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAME */
.review-name {
  font-weight: 600;
  font-size: var(--heading-h5-font-size);
  margin-bottom: 4px;
}

/* META */
.review-meta {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.review-country {
  font-weight: 500;
}

.review-role {
  opacity: 0.8;
}

.review-separator {
  margin: 0 6px;
}

/* TAKEAWAY (чистый, без акцентов) */
.review-takeaway {
  font-size: var(--base-font-size);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* FULL TEXT */
.review-full {
  font-size: var(--base-font-size);
  font-style: italic;
  line-height: 1.6;
  display: none;
  margin-top: 8px;
  opacity: 0.75;
}

.review-full.open {
  display: block;
}

/* TOGGLE */
.review-toggle {
  margin-top: 10px;
  font-size: 13px;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.review-toggle:hover {
  opacity: 1;
}
/* END_SECTION:adv-reviews-grid */