/** Shopify CDN: Minification failed

Line 127:40 The "-" operator only works if there is whitespace on both sides
Line 143:40 The "-" operator only works if there is whitespace on both sides

**/
/* 1. Section wrapper & optional heading */

.sfd-section {
  width: 100%;
}

.sfd-section__heading-wrap {
  padding: 2rem var(--container-gutter, 2rem) 0;
  text-align: center;
}

.sfd-section__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-color, #1a1a1a);
}


/* 2. Two-column layout */

.sfd-section__layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  gap: 20px;
}

@media screen and (min-width: 480px) {
  .sfd-panel--left {
    padding: 0 30px;
  }
}

@media screen and (min-width: 750px) {
  .sfd-section__layout {
    --max-widthA: calc(0.629 * var(--container-max-width));
  }
}

@media screen and (min-width: 990px) {
  .sfd-section__layout {
    --max-widthA: calc(0.8125 * var(--container-max-width));
  }
}

@media screen and (min-width: 1024px) {
  .sfd-section__layout {
    --max-widthA: calc(0.8458 * var(--container-max-width));
  }
}

@media screen and (min-width: 1200px) {
  .sfd-section__layout {
    --max-widthA: calc(0.8758 * var(--container-max-width));
    gap: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .sfd-section__layout {
    --max-widthA: var(--container-max-width);
  }
}

/* 3. Panels — left & right */

.sfd-panel {
  display: flex;
  flex-direction: column;
}

.sfd-panel--left {
  flex: 0 0 100%;
  background-color: var(--sfd-left-bg, #CD1631);
  color: var(--sfd-left-text, #ffffff);
  gap: 0;
  border-top-right-radius: 16px;
  padding: 0 15px;
}

.sfd-panel--right {
  flex: 0 0 100%;
  width: 100%;
  background-color: var(--sfd-right-bg, #ffffff);
  color: var(--sfd-right-text, #1a1a1a);
}

@media screen and (min-width: 750px) {
  .sfd-panel--left {
    padding: 0 15px;
  }
}

@media screen and (min-width: 990px) {
  .sfd-panel--left {
    flex: 0 0 calc(var(--sfd-left-ratio, 60) * 1%);
    padding: 20px 15px;
  }

  .sfd-panel--right {
    --right-width: calc(var(--sfd-right-ratio) - 40px);
    flex: 0 0 calc(var(--right-width) * 1%);
    width: calc(var(--right-width) * 1%);
    background-color: var(--sfd-right-bg, #ffffff);
    color: var(--sfd-right-text, #1a1a1a);
  }

  .sfd-panel--right .right-side-content {
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .sfd-panel--left .left-side-content {
    width: calc((var(--max-widthA) * .6));
    margin-left: auto
  }

  .sfd-panel--right .right-side-content {
    width: calc((var(--max-widthA) * .4)- 88px);
    margin-right: auto;
  }
}

@media screen and (min-width: 1440px) {
  .sfd-panel--left {
    padding: 80px 48px 80px 0;
  }

  .sfd-panel--left .left-side-content {
    width: calc((var(--max-widthA) * .6) - 48px);
    margin-left: auto;
  }

  .sfd-panel--right .right-side-content {
    width: calc((var(--max-widthA) * .4)- 40px);
    margin-right: auto;
  }
}

@media screen and (min-width: 1600px) {
  .sfd-panel--left .left-side-content {
    width: calc((var(--max-widthA) * .6));
  }

  .sfd-panel--right .right-side-content {
    width: calc((var(--max-widthA) * .4));
  }
}

.sfd-panel__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--sfd-right-text, #1a1a1a);
}

.sfd-panel__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--sfd-right-text, #1a1a1a);
}

.sfd-panel__text ul,
.sfd-panel__text ol {
  padding-left: 1.25rem;
}

.sfd-panel__text p+p {
  margin-top: 0.75rem;
}

/*t panel richtext tweaks (Impact uses  for prose) */
sfd-panel--right  h1,
.sfd-panel--right  h2,
.sfd-panel--right  h3,
.sfd-panel--right  h4 {
  color: var(--sfd-right-text, #1a1a1a);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.sfd-panel--right  h1:first-child,
.sfd-panel--right  h2:first-child,
.sfd-panel--right  h3:first-child {
  margin-top: 0;
}

.sfd-panel--right  a {
  color: var(--sfd-left-bg, #c0392b);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sfd-panel--right  ul,
.sfd-panel--right  ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.sfd-panel--right  ul li,
.sfd-panel--right  ol li {
  list-style: outside;
}

.sfd-panel--right  li+li {
  margin-top: 0.35rem;
}

.sfd-panel--right  strong {
  font-weight: 700;
}

.sfd-panel__content hr {
  border: none;
  height: .1rem;
  background-color: rgba(var(--color-foreground), .2);
  display: block;
  margin: 12px 0;
}

/* 4. Feature block — horizontal flex row */

.sfd-block {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
  padding: 24px;
  border-radius: 12px;
  background: #CD163166;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.sfd-block.top-bottom {
  padding: 35px 24px;
  flex-direction: column;
  justify-content: center;
}

.sfd-block.top-bottom:not(:last-child) {
  margin-bottom: 24px;
}

.sfd-block.left-right:not(:last-child) {
  margin-bottom: 12px;
}

/* 5. Circle — icon wrapper */

.sfd-block__circle {
  width: var(--sf-icon-size, 72px);
  height: var(--sf-icon-size, 72px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.sfd-block__circle--placeholder {
  opacity: 0.55;
}

.sfd-block__circle svg {
  color: var(--sf-left-text, #ffffff);
  width: calc(var(--sf-icon-size, 72px) * 0.45);
  height: calc(var(--sf-icon-size, 72px) * 0.45);
}


/* 6. Video — responsive embed wrapper */

.sfd-block__video-wrap {
  width: var(--sf-icon-size, 120px);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.sfd-block--video-full .sfd-block__video-wrap {
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.sfd-block--video-full .sfd-block__iframe,
.sfd-block--video-full .sfd-block__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sfd-block__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.sfd-block__iframe {
  display: block;
  border: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
}


/* 7. Block text body */

.sfd-block__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sfd-block.top-bottom .sfv-block__body {
  text-align: center;
}

.sfd-block__heading {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sfd-left-text, #ffffff);
}

.sfd-block__desc {
  line-height: 1.6;
  color: var(--sfd-left-text, #ffffff);
}

.sfd-block__desc p {
  margin: 0;
}

.sfd-block__desc p+p {
  margin-top: 0.4rem;
}


/* 8. Divider — short line between blocks */

.sfd-block__divider {
  display: block;
  width: 2.5rem;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  margin: 0 auto;
  border-radius: 1px;
}


/* 9. Empty state (theme editor only) */

.sfd-empty-state {
  padding: 2rem;
  text-align: center;
  opacity: 0.6;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 0.5rem;
}


/* 10. Theme editor — block selection highlight */

.shopify-section-editor .sfd-block:focus-within,
.sfd-block.is-selected {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 0.25rem;
}


/* 11. Mobile — stack panels, description on top */

@media screen and (max-width: 989px) {
  .sfd-section__layout {
    flex-direction: column;
  }

  .sfd-panel--left,
  .sfd-panel--right {
    flex: 0 0 auto;
    width: 100%;
  }

  .sfd-panel--right {
    order: 1;
    padding: 0 15px;
  }

  .sfd-panel--left {
    order: 2;
    padding: 30px 15px;
  }

  .sfd-block {
    padding: 16px;
    gap: var(--spacing-4-5);
  }
  
  .sfd-block.left-right {
    flex-direction: column;
  }

  .sfd-block__heading {
    font-size: 1rem;
  }
}