/** Shopify CDN: Minification failed

Line 20:20 Unexpected "{"
Line 20:29 Expected ":"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 21:60 Expected ":"

**/


/* CSS from section stylesheet tags */
.membership-banner {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 767px) {
  #shopify-section-{{ section.id }} .space-block{
     padding: {{ section.settings.space | divided_by: 2 }}px 0;
  }  
  .membership-banner__heading {
    font-size: 22px;
  }
  .membership-banner__subtext {
    font-size: 16px;
  }
}
.membership-highlights {
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.membership-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 90px;
}
.hcard-icon {
    margin-top: -48px;
}
.highlight-card {
  background-image: linear-gradient(45deg, #E1F6FF, rgb(225 246 255 / 20%));
  border-radius: 12px;
  padding: 0 25px 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.highlight-card__icon {
  margin: 0 auto 20px;
}

.highlight-card__title {
  color: var(--heading-color);
  border-bottom: 2px solid #44B9EA;
  display: inline-block;
}

.highlight-card__description {
    font-size: 17px;
    color: #0F4374;
    padding-top: 10px;
    padding-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .membership-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .membership-highlights__grid {
    grid-template-columns: 1fr;
  }
  .membership-highlights__title {
    font-size: 26px;
  }
}