/** Shopify CDN: Minification failed

Line 15:6 Expected identifier but found whitespace
Line 15:8 Unexpected "{"
Line 15:17 Expected ":"
Line 15:35 Expected ":"

**/


/* CSS from section stylesheet tags */
.rf-promo-section {
  display: flex;
  flex-wrap: wrap;
  gap: {{ section.settings.gap }}px;
}

.rf-promo-block {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.rf-promo-block img {
  width: 100%;
  margin-bottom: 1rem;
}

.rf-promo-block h2 {
  margin-bottom: 0.5rem;
}

.rf-promo-block p {
  margin-bottom: 1rem;
}

.rf-promo-block a {
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 16px;
}

@media screen and (max-width: 768px) {
  .rf-promo-section {
    flex-direction: column;
  }
  
  .rf-promo-block {
    flex: 1 1 100%;
  }
}