/** Shopify CDN: Minification failed

Line 19:13 Unexpected "{"
Line 19:22 Expected ":"
Line 19:29 Unexpected "{"
Line 22:13 Unexpected "{"
Line 22:22 Expected ":"
Line 26:13 Unexpected "{"
Line 26:22 Expected ":"
Line 35:15 Unexpected "{"
Line 35:24 Expected ":"
Line 72:13 Unexpected "{"
... and 25 more hidden warnings

**/


/* CSS from section stylesheet tags */
#blog-cards-{{ section.id }} { 
  padding: 40px 0; 
}
#blog-cards-{{ section.id }} .blog-cards__heading {
   margin: 0 0 20px; 
  }

#blog-cards-{{ section.id }} .blog-cards__grid {
  gap: var(--gap);
}

/* Desktop/tablet: regular grid */
@media (min-width: 750px) {
    .blog-cards__grid{
        margin: 0 40px !important;
    }
  #blog-cards-{{ section.id }} .blog-cards__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols-desktop), minmax(0, 1fr));
  }
  h3.blog-card__title a {
    text-decoration: none;
    font-family: geist;
    font-size: 16px;
    line-height: 22px;
    color: #292929;
}
.blog-card__title {
    margin-bottom: 15px !important;
}
}

/* Mobile: horizontal slider (no external JS) */
@media (max-width: 749.98px) {
  .blog-cards {
    margin-top: 20px;
}
    h3.blog-card__title a {
    text-decoration: none;
    font-family: geist;
    font-size: 14px;
    line-height: 20px;
    color: #292929;
}
.blog-card__title {
    margin-bottom: 15px !important;
}
.blog-cards__grid{
    margin-left: 15px !important;
    padding-right: 10px !important;
    gap: 10px !important;
}

#blog-cards-{{ section.id }} .blog-cards__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--gap) * (var(--cols-mobile) - 1))) / 1.3 * var(--cols-mobile));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
  #blog-cards-{{ section.id }} .blog-cards__grid::-webkit-scrollbar { 
    display: none; 
}
  #blog-cards-{{ section.id }} .blog-card { 
    scroll-snap-align: start; 
}
}

#blog-cards-{{ section.id }} .blog-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: fit-content !important;
}

#blog-cards-{{ section.id }} .blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: var(--ratio);
}
#blog-cards-{{ section.id }} .blog-card__media img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  border-radius: 20px;
}
#blog-cards-{{ section.id }} .blog-card__placeholder {
  width: 100%; 
  height: 100%;
  display: grid; 
  place-items: center;
  color: #9fb3b3; 
  font-size: 24px; 
  background: #f3f7f7;
}

#blog-cards-{{ section.id }} 

.blog-card__body { 
    padding: 15px 0 50px; 
}
#blog-cards-{{ section.id }} .blog-card__title {
  margin: 0 0 15px;
  font-size: 16px; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
   overflow: hidden;
   line-height: 100%;
   font-family: geist;
}
#blog-cards-{{ section.id }} .blog-card__excerpt {
  margin: 0 0 10px; 
  font-size: 14px; 
  color: #292929;
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden;
}
#blog-cards-{{ section.id }} .blog-card__meta {
  margin-top: auto; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 10px;
  line-height: 18px;
}
#blog-cards-{{ section.id }} .blog-card__read {
  font-size: 12px; 
  text-decoration: none; 
  color: #669998; 
  font-weight: 400;
  font-family: geist;
}
#blog-cards-{{ section.id }} .blog-card__date { 
    font-size: 12px; 
    color: #8b8b8b; 
    white-space: nowrap;
    font-family: geist;
    }
.testimonials-wrapper {
  text-align: center;
  padding: 0px 40px 50px;
}

.testimonials-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
}

.testimonial-item {
  background: #F4F5F7;
  border-radius: 20px;
  padding: 15px;
  text-align: left;
}
.testimonial-top {
    display: flex;
    justify-content: space-between;
}
.testimonial-item .owner-name {
  font-weight: 400;
  font-size: 14px;
  font-family: bodoni-moda !important;
  text-transform: uppercase !important;
  line-height: 22px !important;
  margin: 0;
}
.test-top-left span{
  font-size: 14px;
  font-weight: 400;
  font-family: geist;
  line-height: 100%;
  color: #8b8b8b;
  letter-spacing: 0%;
}

.testimonial-description{
  margin-top: 50px;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
.test-top-right{
  height: 45px;
}
.testimonial-icon {
  width: 44px;
  height: 44px;
}
@media(max-width: 749px){
  .blog-card__body{
    padding-bottom: 40px !important;
  }
  .testimonials-wrapper {
  display: flex;
  overflow-x: scroll;
  flex-direction: row;
  scrollbar-width: none !important;
  }
  .testimonials-wrapper {
    padding-left: 10px !important;
  }
  .testimonials-grid{
    grid-template-columns: repeat(5, 45%) !important;
    gap: 10px !important;
  }
}