/** Shopify CDN: Minification failed

Line 28:13 Expected identifier but found whitespace
Line 28:15 Unexpected "{"
Line 28:24 Expected ":"
Line 29:8 Expected identifier but found whitespace
Line 29:10 Unexpected "{"
Line 29:19 Expected ":"
Line 32:8 Expected identifier but found whitespace
Line 32:10 Unexpected "{"
Line 32:19 Expected ":"
Line 35:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.blog-grid {
  display: grid;
  grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
  gap: 2rem;
}
.blog-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: {{ section.settings.bg_color }};
  color: {{ section.settings.text_color }};
}
.blog-card__title a {
  color: {{ section.settings.text_color }};
}
.blog-meta {
  color: {{ section.settings.meta_color }};
}
.read-more {
  color: {{ section.settings.link_color }};
}
.read-more:hover {
  color: {{ section.settings.link_hover_color }};
}