/** Shopify CDN: Minification failed

Line 95:13 Expected identifier but found whitespace
Line 95:15 Unexpected "{"
Line 95:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:events-grid (INDEX:21) */
.events-grid { 
  padding: 60px 20px 0px 20px;
}

.events-grid__container {
  max-width: 1260px;
  margin: 0 auto;
}

.events-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.events-grid__card {
  background: rgba(104, 171, 202, 0.36); /* #68ABCA5C */
  min-height: 480px;
  padding: 100px 30px 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.events-grid__card:hover {
  opacity: 0.9;
}

.events-grid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
}

.events-grid__small-title,
.events-grid__main-title {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #324744;
  margin: 0;
}
.collection-list-wrapper.page-width.isolate.no-mobile-link.section-template--27803069251956__collection_list_pkehHr-padding {
  padding-top: 0 !important;
  
}
@media screen and (max-width: 749px) {
  .events-grid {
    padding: 40px 15px;
  }

  .events-grid__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .events-grid__card {
    min-height: 180px;
    padding: 20px;
  }

  .events-grid__content {
    gap: 30px;
  }

  .events-grid__small-title,
  .events-grid__main-title {
    font-size: 28px;
  }
}
/* END_SECTION:events-grid */

/* START_SECTION:latest-reviews (INDEX:30) */
.latest-reviews {
  background: {{ section.settings.bg_color }};
  padding: 60px 20px 100px 20px;
}

.latest-reviews__container {
  max-width: 1260px;
  margin: 0 auto;
}

.latest-reviews__heading {
  font-family: inter;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0 0 40px;
}

.latest-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.latest-reviews__card {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 20px;
  min-height: 190px;
}

.latest-reviews__stars {
  font-size: 18px;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Review Title
   Font Family: Heading Font Family
   Font Weight: Heading Font Weight (Semi Bold)
   Font Size: Heading Size Base
   Line Height: 120%
   Letter Spacing: -2%
*/
.latest-reviews__title {
  font-family: inter;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #1E1E1E;
  margin: 0 0 6px;
}

/* Review Body
   Font Family: Body Font Family
   Font Weight: Body Font Weight Regular
   Font Size: Body Size Medium
   Line Height: 140%
*/
.latest-reviews__body {
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 0;
  color: rgba(var(--color-foreground), 0.75);
  margin: 0 0 18px;
}

/* Reviewer Info */
.latest-reviews__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Reviewer Image 40x40 */
.latest-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.latest-reviews__author-info {
  display: flex;
  flex-direction: column;
}

/* Reviewer Name
   Font Weight: Strong / Semi Bold
*/
.latest-reviews__name {
  font-family: inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #757575;
  vertical-align: middle;
}

/* Review Date */
.latest-reviews__date {
  font-family: inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #B3B3B3;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .latest-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .latest-reviews {
    padding: 40px 15px;
  }

  .latest-reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .latest-reviews__heading {
    margin-bottom: 30px;
  }
}
/* END_SECTION:latest-reviews */