/** Shopify CDN: Minification failed

Line 13:19 Expected identifier but found whitespace
Line 13:21 Unexpected "{"
Line 13:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.feature-blocks {
  padding: 60px 20px;
  background-color: {{ section.settings.background_color }};
  text-align: center;
}

.feature-blocks__title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
}

.feature-blocks__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-blocks__item img {
  width: 80px;
  height: 80px;
}

.feature-blocks__item h3 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
}

.feature-blocks__item p {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* Адаптив */
@media screen and (max-width: 1024px) {
  .feature-blocks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .feature-blocks__grid {
    grid-template-columns: 1fr;
  }
}