{% scope_css %}

.membership-value-mod {
  position: relative;
  width: 100%;
}

.membership-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  width: 100%;
}

.membership-value *,
.membership-value *::before,
.membership-value *::after {
  box-sizing: border-box;
}

.membership-value__left,
.membership-value__right {
  min-width: 0;
}

.membership-value__left-inner {
  max-width: px;
}

/* LEFT OVERLINE */

.membership-value__overline-wrap {
  margin-bottom: 14px;
}

.membership-value__overline {
  display: inline-block;
  margin: 0;

  {% if module.style.typography.overline.css %}
    
  {% endif %}

  color: #2b7d6a;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* LEFT HEADING */

.membership-value__heading {
  margin: 0 0 24px;

  {% if module.style.typography.heading.css %}
    
  {% endif %}

  color: ;
  line-height: 1.08;
}

/* LEFT COPY */

.membership-value__copy {
  max-width: px;

  {% if module.style.typography.bodycopy.css %}
    
  {% endif %}

  color: ;
  line-height: 1.55;
}

.membership-value__copy p {
  margin-top: 0;
  margin-bottom: 18px;
}

.membership-value__copy p:last-child {
  margin-bottom: 0;
}

/* CTA */

.membership-value__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
}

.membership-value__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  {% if module.style.typography.button.css %}
    
  {% endif %}
}

/* RIGHT CARD */

.membership-value__right {
  min-width: 0;
}

.membership-value__card {
  width: 100%;
  padding: clamp(48px, 5vw, 68px);
  background-color: #f9f9f9;
  box-shadow: 0 10px 28px rgba(52, 54, 89, 0.08);
}

.membership-value__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* CARD LABELS */

.membership-value__card-label,
.membership-value__round-label {
  display: inline-block;
  padding: 0;
  background: transparent;

  {% if module.style.typography.overline.css %}
    
  {% endif %}

  color: #2b7d6a;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.membership-value__card-label {
  margin-bottom: 18px;
}

.membership-value__round-label {
  margin-bottom: 14px;
}

/*
 * PRICE HEADINGS
 * These are h2 elements, matching the main heading element.
 */

.membership-value__price-heading,
.membership-value__round-price {
  margin: 0;

  {% if module.style.typography.heading.css %}
    
  {% endif %}

  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

/* $60 / YEAR */

.membership-value__price-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  color: ;
}

.membership-value__membership-price,
.membership-value__period {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* DIVIDER */

.membership-value__divider {
  width: 100%;
  height: 1px;
  margin: 42px 0 34px;
  background-color: #dedfe7;
}

/* $5 OR LESS */

.membership-value__round-price {
  color: #2b7d6a;
}

/* DETAILS */

.membership-value__details {
  margin-top: 22px;

  {% if module.style.typography.details.css %}
    
  {% endif %}

  color: ;
  line-height: 1.65;
}

.membership-value__details p {
  margin-top: 0;
  margin-bottom: 12px;
}

.membership-value__details p:last-child {
  margin-bottom: 0;
}

/* TABLET */

@media (max-width: 1100px) {
  .membership-value {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 45px;
  }

  .membership-value__card {
    padding: 44px;
  }
}

/* STACKED LAYOUT */

@media (max-width: 991px) {
  .membership-value {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .membership-value__left-inner,
  .membership-value__copy {
    max-width: none;
  }
}

/* MOBILE */

@media (max-width: 575px) {
  .membership-value {
    gap: 32px;
  }

  .membership-value__heading {
    margin-bottom: 18px;
  }

  .membership-value__cta {
    margin-top: 28px;
  }

  .membership-value__cta a {
    width: 100%;
  }

  .membership-value__card {
    padding: 34px 24px;
  }

  .membership-value__price-heading {
    gap: 8px;
  }

  .membership-value__divider {
    margin: 34px 0 28px;
  }
}

{% end_scope_css %}