/** Shopify CDN: Minification failed

Line 197:12 Unexpected "{"
Line 197:21 Expected ":"
Line 198:16 Expected identifier but found whitespace
Line 198:18 Unexpected "{"
Line 198:27 Expected ":"
Line 198:53 Expected ":"
Line 199:19 Expected identifier but found whitespace
Line 199:21 Unexpected "{"
Line 199:30 Expected ":"
Line 199:59 Expected ":"
... and 10 more hidden warnings

**/
.custom-steps {
  width: 100%;
}

.custom-steps__wrapper {
  padding-top: var(--spacing-sections-desktop);
  padding-bottom: var(--spacing-sections-desktop);
}

.custom-steps__tagline {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  letter-spacing: .13rem;
  line-height: calc(1 + .2 / var(--font-body-scale));
  text-transform: uppercase;
}

.custom-steps__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  margin: 0 0 1.6rem 0;
}

.custom-steps__description {
  margin: 0 0 4rem 0;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 80rem;
}

.custom-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.custom-steps__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.25);
  align-items: start;
}

.custom-steps__item:last-child {
  border-bottom: none;
}

.custom-steps__item-number {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(var(--color-base-accent-1));
  line-height: 1;
  min-width: 4rem;
  width: 4rem;
  height: 4rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-base-accent-1), 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.custom-steps__item-content {
  display: contents;
}

.custom-steps__item-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.3;
  width: 20rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
}

.custom-steps__item-text-wrapper {
  display: flex;
  flex-direction: column;
}

.custom-steps__item-description {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}

.custom-steps__item-description p {
  margin: 0 0 1rem 0;
}

.custom-steps__item-description p:last-child {
  margin-bottom: 0;
}

.custom-steps__item-note {
  margin: 1.5rem 0 0 0;
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  border-radius: var(--buttons-radius);
  background-color: rgba(var(--color-foreground), 0.04);
}

.custom-steps__item-note p {
  margin: 0 0 1rem 0;
}

.custom-steps__item-note p:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
@media screen and (max-width: 749px) {
  .custom-steps__wrapper {
    padding-top: var(--spacing-sections-desktop);
    padding-bottom: var(--spacing-sections-desktop);
  }

  .custom-steps__heading {
    font-size: 2.8rem;
  }

  .custom-steps__description {
    margin-bottom: 3rem;
    font-size: 1.4rem;
  }

  .custom-steps__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    padding: 2rem 0;
  }

  .custom-steps__item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-column: 1 / -1;
  }

  .custom-steps__item-number {
    font-size: 1.6rem;
    min-width: 5rem;
    width: 5rem;
    height: 5rem;
    min-height: 5rem;
  }

  .custom-steps__item-title {
    font-size: 1.7rem;
    width: auto;
    min-height: 5rem;
  }

  .custom-steps__item-description {
    font-size: 1.4rem;
  }

  .custom-steps__item-note {
    font-size: 1.2rem;
    padding: 1.2rem 1.5rem;
    margin-top: 1.2rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .custom-steps__item {
    gap: 2.5rem;
  }
}

/* Section padding utility */
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }
}
