/** Shopify CDN: Minification failed

Line 16:0 Unexpected "}"

**/
/*==================================================
SALA GRAPHICS FRAMEWORK
Component: Value Cards
Version: 2.0.0
==================================================*/

.sg-value-cards-v2 {
  background: var(--sg-surface);
  padding: var(--sg-section-padding-desktop) 0;
}
}

.sg-value-cards-v2 .sg-container {
 width: min(
  var(--sg-container-width),
  calc(100% - 40px)
);
  margin-inline: auto;
}

/*==================================================
Header
==================================================*/

.sg-value-cards-v2__header {
  max-width: var(--sg-text-width);
  margin: 0 auto 40px;
  text-align: center;
}

.sg-value-cards-v2__eyebrow {
  margin: 0 0 12px;
  color: var(--sg-orange, #f26522);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sg-value-cards-v2__heading {
  margin: 0;
  color: var(--sg-navy, #081f46);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sg-value-cards-v2__description {
  max-width: 740px;
  margin: 18px auto 0;
  color: #5b6876;
  font-size: 1.04rem;
  line-height: 1.75;
}

.sg-value-cards-v2__description p {
  margin: 0;
}

/*==================================================
Grid
==================================================*/

.sg-value-cards-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sg-gap-medium);
}

/*==================================================
Card
==================================================*/

.sg-value-card-v2 {
  position: relative;
  min-height: 270px;
  padding: 26px 22px 24px;
  overflow: hidden;
  background: var(--sg-surface-soft);
  border: 1px solid var(--sg-border);
  border-top: 4px solid var(--sg-orange, #f26522);
  border-radius: var(--sg-radius-medium);
  box-shadow: var(--sg-shadow-light);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sg-value-card-v2::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 125px;
  height: 125px;
  background: rgba(242, 101, 34, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.sg-value-card-v2:hover {
  transform: translateY(var(--sg-hover-lift-large));
  background: #ffffff;
  border-color: rgba(242, 101, 34, 0.28);
  box-shadow: var(--sg-shadow-medium);
}

/*==================================================
Icon
==================================================*/

.sg-value-card-v2__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: #ffffff;
  background: var(--sg-orange, #f26522);
  border-radius: var(--sg-radius-pill);
  box-shadow: 0 10px 22px rgba(242, 101, 34, 0.22);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.sg-value-card-v2__icon svg {
  width: 28px;
  height: 28px;
}

.sg-value-card-v2:hover .sg-value-card-v2__icon {
  background: var(--sg-navy, #081f46);
  transform: scale(1.04);
}

/*==================================================
Text
==================================================*/

.sg-value-card-v2__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: var(--sg-orange, #f26522);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sg-value-card-v2__title {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: var(--sg-navy, #081f46);
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.25;
}

.sg-value-card-v2__text {
  position: relative;
  z-index: 1;
  color: #5d6a78;
  font-size: 0.98rem;
  line-height: 1.68;
}

.sg-value-card-v2__text p {
  margin: 0;
}

/*==================================================
Tablet
==================================================*/

@media screen and (max-width: 1099px) {
  .sg-value-cards-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-value-card-v2 {
    min-height: 265px;
  }
}

/*==================================================
Mobile
==================================================*/

@media screen and (max-width: 749px) {
  .sg-value-cards-v2 {
    padding: var(--sg-section-padding-mobile) 0;
  }

  .sg-value-cards-v2 .sg-container {
    width: min(100% - 28px, 1240px);
  }

  .sg-value-cards-v2__header {
    margin-bottom: 30px;
    text-align: left;
  }

  .sg-value-cards-v2__description {
    margin-top: 14px;
    font-size: 1rem;
  }

  .sg-value-cards-v2__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sg-value-card-v2 {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 14px;
  }

  .sg-value-card-v2__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .sg-value-card-v2__icon svg {
    width: 25px;
    height: 25px;
  }

  .sg-value-card-v2__title {
    font-size: 1.24rem;
  }
}

/*==================================================
Reduced Motion
==================================================*/

@media (prefers-reduced-motion: reduce) {
  .sg-value-card-v2,
  .sg-value-card-v2__icon {
    transition: none;
  }

  .sg-value-card-v2:hover,
  .sg-value-card-v2:hover .sg-value-card-v2__icon {
    transform: none;
  }
}