/** Shopify CDN: Minification failed

Line 192:17 Unexpected "{"
Line 192:26 Expected ":"
Line 196:16 Unexpected "{"
Line 196:25 Expected ":"

**/
.card-with-image__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2rem;
  border: 1px solid rgb(var(--color-foreground), 0.1);
  padding: 3rem;
  height: 100%;
  min-height: unset;
  background-color: rgb(var(--color-button-text), 0.1);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0; 
  transition: transform 0.3s;
}

.card-with-image__button {
  color: white;
  width: 100%;
  font-size: 1.6rem;
  border: none;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.card-with-image__button-wrapper:hover {
  transform: translateY(-0.2rem);
  background-color: rgb(var(--color-primary-light));
  box-shadow: 0 1.2rem 2rem rgb(var(--color-primary-light), 0.45);
}

.card-with-image__button-wrapper {  
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  background-color: rgb(var(--color-shadow));
  padding: 17px 24px;
  border-radius: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.card-with-image__card:hover {
  transform: translateY(-4px);
}

.card-with-image__card img {
  flex: 1;
  border-radius: 2.5rem;
  padding: 3rem;
  height: auto;
  justify-content: center;
  flex-direction: column;
}

.card-with-image__author-text {
  display: flex;
  justify-content: center;
  align-self: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.3rem;
}

.card-with-image__author-info-text {
  opacity: 0.75;
  display: flex;
  justify-content: center;
  align-self: flex-start;
  flex-wrap: wrap;
  font-size:1.2rem;
}

.card-with-image__label-text {
  font-weight: bold;
  color: rgb(var(--color-primary-light));
}

.card-with-image__title-text {
  font-size: 1.8rem;
  font-weight: bold;
}

.card-with-image__offer-text {
}

.card-with-image__list-text {
  font-style: italic;
  font-size: 1.35rem;
}

.card-with-image__list-text ul {
  list-style: none;
  padding: 0 0 2rem 0;
  margin: 0;
  font-size: 1.3rem;
}

.card-with-image__list-text li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card-with-image__list-text li::before {
  content: '';
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-bottom: 1.3rem;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L10 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.card-with-image__center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-with-image__header-column {
  display: flex;
  align-items: stretch;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .card-with-image__card-column:first-child {
    order: 2;
  }

  .card-with-image__card-column:last-child {
    order: 1;
  }

  .card-with-image__row-bottom {
    flex-direction: column;
  }
}

.card-with-image__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
}

.card-with-image__row-top {
  display: flex;
  align-items: stretch;
  justify-content:center;
  width: 100%;
  padding-top: 0rem;
  padding-bottom: 2rem;
}
.card-with-image__row-bottom {
  display: flex;
  align-items: stretch;
  justify-content:center;
  width: 85%;
  padding: 4rem calc(4rem / var(--font-body-scale)) 5rem;
  gap: 3.5rem;
  padding-top: 0rem;
  flex-direction: column;
}

@media screen and (max-width: 749px) {
  .card-with-image__row-top {
    padding: 0rem 0rem 2rem 0rem;
  }
  .card-with-image__row-bottom {
    align-items: center;
    padding: 0rem;
  }
}

/* Prevent new lines in rich text editor from creating large gaps */
#CardWithImage--{{ section.id }} .card-with-image__text h1, h2, h3, h4 {
  margin: 0;
}

#CardWithText--{{ section.id }} .card-with-image__text p {
  margin-top: 0;
  color: rgb(var(--color-button-text));
}

.card-with-image__text-caption--background {
  background-color: rgb(var(--color-shadow));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(var(--color-primary));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.card-with-image__text-caption--no-background {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(var(--color-primary));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 100px;
}

/* Rounded image */
.card-with-image__media {
  flex: 1;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.card-with-image__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 749px) {
  .card-with-image__card-column {
    width: 100%;
    float: none;
    display: block;
    justify-content: unset;
  }

  .card-with-image__row {
    flex-direction: column;
  }
}

.card-with-image__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.card-with-image__caption {
  display: block;
  color: rgb(var(--color-primary-light));
  z-index: 1;
}

@media screen and (min-width: 750px) {
  .card-with-image--desktop-right {
    align-self: flex-end;
  }
  
  .card-with-image--desktop-left {
    align-self: flex-start;
  }
  
  .card-with-image--desktop-center {
    align-self: center;
  }

}

.card-with-image__content--desktop-right {
  align-self: flex-end;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.card-with-image__content--desktop-left {
  align-self: flex-start;
  text-align: left;
}

.card-with-image__content--desktop-center {
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
}

.card-with-image__caption--desktop-right {
  align-self: flex-end;
  text-align: right;
}

.card-with-image__caption--desktop-left {
  align-self: flex-start;
  text-align: left;
}

.card-with-image__caption--desktop-center {
  align-self: center;
  text-align: center;
}

.card-with-image__content {
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  word-break: break-word;
}

.card-with-image__content > * + * {
  margin-top: 1rem;
}
