/** Shopify CDN: Minification failed

Line 350:0 Expected "}" to go with "{"

**/
/* ================================
   Content Creation Section
   ================================ */
.content-creation__top {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 600px;
}
.content-creation__top h2 {
  color: #150F1D;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.88px;
  margin-bottom: 16px;
}
.content-creation__top p {
  color: #150F1D;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 768px) {
  .content-creation__top h2 {
    color: #150F1D;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
  }

  .content-creation__top p {
    color: #150F1D;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}

/* Cards grid */
.content-creation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  margin: 0 auto;
}

/* Each card */
.content-creation-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  background: #fff;
}

/* 2x2 quadrant grid inside card */
.content-creation-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  width: 100%;
  height: 100%;
}

/* --- Top-left: Icon --- */
.content-creation-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-creation-card__icon img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain; /* stretch into quarter */
}

/* --- Top-right: Label (number) --- */
.content-creation-card__label {
  font-size: 44px;
  font-weight: 600;
  color: #D3B1E6;
  text-align: right;
  align-self: start;
  justify-self: end;
  line-height: 1;
}

/* --- Bottom-left: Title --- */
.content-creation-card__title {
  color: #150F1D;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  margin: 0;
  align-self: end;
}

/* --- Bottom-right: Description --- */
.content-creation-card__desc {
  color: #443F4B;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  align-self: end;
}

/* Responsive */
@media (max-width: 768px) {
  .content-creation-cards {
    grid-template-columns: 1fr;
  }

  /* --- Top-right: Label (number) --- */
  .content-creation-card__label {
    color: #D3B1E6;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.88px;
    text-align: right;
    align-self: start;
    justify-self: end;
    line-height: 1;
  }

  /* --- Bottom-left: Title --- */
  .content-creation-card__title {
    color: #150F1D;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin: 0;
    align-self: end;
  }

  /* --- Bottom-right: Description --- */
  .content-creation-card__desc {
    color: #443F4B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-self: end;
  }
}

/* ================================
   Simple Mode (true full-width image + centered title)
   ================================ */
.content-creation--simple .content-creation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 40px 40px 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .content-creation--simple .content-creation-card {
    padding: 40px 20px 20px;
  }
}

.content-creation--simple .content-creation-card__icon--simple {
  width: 100%;
  max-height: 300px;         /* force same height for all images */
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-creation--simple .content-creation-card__icon--simple img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show whole image without distortion */
}

.content-creation--simple .content-creation-card__title--simple {
  color: #150F1D;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  margin: 24px 0;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .content-creation--simple .content-creation-card__title--simple {
    color: #150F1D;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
  }
}

/* ================================
   Back Mode (force title + button to bottom)
   ================================ */
.content-creation-card--back {
  position: relative;
  border-radius: 20px;
  padding: 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  overflow: hidden;
}

.content-creation-card--back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* dark overlay */
  border-radius: 20px;
  z-index: 1;
}

/* overlay always sits at the bottom */
.content-creation-card__overlay {
  position: relative;
  z-index: 2;
  padding: 30px;
  text-align: center;
  margin-top: auto;   /* pushes overlay down */
  width: 100%;
  box-sizing: border-box;
}

.content-creation-card__title--back {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

/* =========================================
   MOBILE: Stack elements like desktop (no font changes)
   ========================================= */
@media (max-width: 768px) {
  .content-creation-card:not(.content-creation-card--simple):not(.content-creation-card--back) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px 24px;
    gap: 16px;
    position: relative;
  }

  .content-creation-card__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  /* Image first */
  .content-creation-card__icon {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: left;
    margin-bottom: 10px;
  }

  .content-creation-card__icon img {
    width: 70%;
    max-width: 220px;
    height: auto;
  }

  /* Label (step number) top-right */
  .content-creation-card__label {
    position: absolute;
    top: 20px;
    right: 24px;
    order: 0;
    margin: 0;
  }

  /* Title */
  .content-creation-card__title {
    order: 3;
    margin-top: 10px;
    align-self: start;
  }

  /* Description */
  .content-creation-card__desc {
    order: 4;
  }
}

.content-creation__review-link {
  background-color: #8b38cc;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  padding: 14.5px 35px !important;
  margin-top: 30px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 28px;
  transition: 1s all;
}
@media (min-width: 768px) {
  .content-creation__review-link {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    width: fit-content;
  }
