/** Shopify CDN: Minification failed

Line 93:17 Expected ":"
Line 93:24 Expected ":"

**/
/* ============================================
   NF Guides CTA
   Fichier : assets/nf-guides-cta.css
   ============================================ */

.nf-guides-cta-section {
  background: var(--color-bg, #f4efe6);
  
}

.nf-guides-cta {

  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 16px;
  background: #fffaf3;
  border: 1px solid rgba(61, 40, 23, 0.08);
  box-shadow: 0 18px 48px rgba(61, 40, 23, 0.06);
  
}

.nf-guides-cta__content {
padding:2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nf-guides-cta__title {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-text, #25231f);
}

.nf-guides-cta__text {
  max-width: 500px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(37, 35, 31, 0.72);
}

.nf-guides-cta__text p {
  margin: 0;
}



.nf-guides-cta__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display:flex;
  justify-content:center;
  align-items:center;
}

.nf-guides-cta__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #fffaf3 0%,
    rgba(255, 250, 243, 0.78) 38%,
    rgba(255, 250, 243, 0) 100%
  );
  pointer-events: none;
}

.nf-guides-cta__media img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  display:flex;
  justify-content;center;
  align-items:center;
  max-height:400px;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .nf-guides-cta {
    grid-template-columns: 1fr;
  }

  .nf-guides-cta__media {
    min-height: 260px;
    order: -1;
  }

  .nf-guides-cta__media::before {
    display: none;
  }
}

@media screen and (max-width: 749px) {


  .nf-guides-cta {
    border-radius: 14px;
  }

  .nf-guides-cta__content {
    padding: 28px 22px 32px;
  }


}