/** Shopify CDN: Minification failed

Line 22:10 Unexpected "{"
Line 22:19 Expected ":"
Line 22:26 Unexpected "{"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
... and 1 more hidden warnings

**/
/* LF Brand Story - Style Magazine Éditorial */
.lf-brand-story {
  padding: var(--lf-space-3xl) 0;
  background-color: #FFFFFF;
}

.section-{{ section.id }} {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (max-width: 749px) {
  .lf-brand-story {
    padding: var(--lf-space-2xl) 0;
  }
}

.lf-brand-story__container {
  max-width: var(--lf-container-lg);
  margin: 0 auto;
}

.lf-brand-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lf-space-2xl);
  align-items: center;
}

@media screen and (max-width: 989px) {
  .lf-brand-story__layout {
    grid-template-columns: 1fr;
    gap: var(--lf-space-xl);
  }
}

.lf-brand-story__layout--reversed {
  direction: rtl;
}

.lf-brand-story__layout--reversed > * {
  direction: ltr;
}

@media screen and (max-width: 989px) {
  .lf-brand-story__layout--reversed {
    direction: ltr;
  }

  .lf-brand-story__layout--reversed .lf-brand-story__image-wrapper {
    order: -1;
  }
}

.lf-brand-story__image-wrapper {
  position: relative;
}

.lf-brand-story__image {
  width: 100%;
  height: auto;
  border-radius: var(--lf-radius-sm);
}

.lf-brand-story__caption {
  font-family: var(--lf-font-body);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--lf-text-color-lighter, #999999);
  margin-top: var(--lf-space-sm);
  text-align: center;
}

.lf-brand-story__content {
  display: flex;
  flex-direction: column;
  gap: var(--lf-space-md);
}

.lf-brand-story__overline {
  font-family: var(--lf-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lf-accent-color, #D4AF37);
  margin: 0;
}

.lf-brand-story__title {
  font-family: var(--lf-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem); /* Enlarged +30% */
  font-weight: 300;
  line-height: 1.2;
  color: var(--lf-text-color, #1E3A5F);
  margin: 0;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 989px) {
  .lf-brand-story__title {
    font-size: 2.5rem; /* Enlarged +25% */
  }
}

.lf-brand-story__text {
  font-family: var(--lf-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--lf-text-color-light, #666666);
}

@media screen and (max-width: 749px) {
  .lf-brand-story__text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.lf-brand-story__text p {
  margin: 0 0 var(--lf-space-sm) 0;
}

.lf-brand-story__text p:last-child {
  margin-bottom: 0;
}

.lf-brand-story__author {
  font-family: var(--lf-font-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--lf-text-color, #1E3A5F);
  margin: var(--lf-space-sm) 0 0 0;
}

.lf-brand-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 1rem 2.5rem;
  margin-top: var(--lf-space-sm);
  font-family: var(--lf-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lf-text-color, #1E3A5F);
  border: 1px solid var(--lf-text-color, #1E3A5F);
  border-radius: var(--lf-radius-sm);
  transition: all var(--lf-transition-base);
}

@media screen and (max-width: 749px) {
  .lf-brand-story__button {
    width: 100%;
    padding: 0.875rem 2rem;
  }
}

.lf-brand-story__button:hover {
  background-color: var(--lf-text-color, #1E3A5F);
  color: #FFFFFF;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .lf-brand-story__button {
    transition: none;
  }
}
