.gfcfs-showcase,
.gfcfs-showcase * { box-sizing: border-box; }

.gfcfs-showcase {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--gfcfs-pad-d, 96px) var(--gfcfs-side-d, 32px);
  overflow: hidden;
  overflow: clip;
  color: var(--gfcfs-heading-color, #1d1b18);
  background: var(--gfcfs-section-bg, #f5f2ec);
  font-family: var(--gfcfs-eyebrow-font, system-ui, sans-serif);
  line-height: 1.5;
  isolation: isolate;
}

.gfcfs-showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  align-items: center;
  gap: var(--gfcfs-gap-d, 56px);
  width: 100%;
  max-width: var(--gfcfs-max-width, 1440px);
  margin: 0 auto;
}

.gfcfs-showcase__media-column,
.gfcfs-showcase__content { min-width: 0; }
.gfcfs-layout-image-left .gfcfs-showcase__media-column { order: 1; }
.gfcfs-layout-image-left .gfcfs-showcase__content { order: 2; }
.gfcfs-layout-image-right .gfcfs-showcase__media-column { order: 2; }
.gfcfs-layout-image-right .gfcfs-showcase__content { order: 1; }

.gfcfs-showcase__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--gfcfs-radius, 16px);
  background: var(--gfcfs-image-bg, #e9e5dd);
  box-shadow: var(--gfcfs-shadow, none);
  isolation: isolate;
}

.gfcfs-ratio-fixed .gfcfs-showcase__media { aspect-ratio: var(--gfcfs-ratio, 5 / 4); }
.gfcfs-ratio-auto .gfcfs-showcase__media { height: var(--gfcfs-height-d, 610px); }
.gfcfs-showcase__slides,
.gfcfs-showcase__placeholder { width: 100%; height: 100%; }

.gfcfs-showcase__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition-duration: var(--gfcfs-duration, 500ms);
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.gfcfs-showcase__slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gfcfs-showcase__slide.is-leaving {
  z-index: 3;
  visibility: visible;
}

.gfcfs-showcase__image-link,
.gfcfs-showcase__slide picture { display: block; width: 100%; height: 100%; }
.gfcfs-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  object-fit: var(--gfcfs-object-fit, cover);
  object-position: var(--gfcfs-slide-x, var(--gfcfs-focal-x, 50%)) var(--gfcfs-slide-y, var(--gfcfs-focal-y, 50%));
}

.gfcfs-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--gfcfs-overlay-color, #000);
  opacity: var(--gfcfs-overlay-opacity, 0);
  pointer-events: none;
}

.gfcfs-showcase__placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 30px;
  color: #646970;
  text-align: center;
}

/* Fade and crossfade */
.gfcfs-effect-fade .gfcfs-showcase__slide,
.gfcfs-effect-crossfade .gfcfs-showcase__slide { transition-property: opacity, visibility; }
.gfcfs-effect-fade .gfcfs-showcase__slide.is-leaving { opacity: 0; }
.gfcfs-effect-crossfade .gfcfs-showcase__slide.is-leaving { opacity: 0; }

/* Horizontal slides */
.gfcfs-effect-slide-left .gfcfs-showcase__slide,
.gfcfs-effect-slide-right .gfcfs-showcase__slide { transition-property: opacity, transform, visibility; }
.gfcfs-effect-slide-left[data-direction="next"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-left[data-direction="prev"] .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-right[data-direction="prev"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-right[data-direction="next"] .gfcfs-showcase__slide.is-leaving { transform: translate3d(100%, 0, 0); }
.gfcfs-effect-slide-left[data-direction="prev"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-left[data-direction="next"] .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-right[data-direction="next"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-right[data-direction="prev"] .gfcfs-showcase__slide.is-leaving { transform: translate3d(-100%, 0, 0); }
.gfcfs-effect-slide-left .gfcfs-showcase__slide.is-active,
.gfcfs-effect-slide-right .gfcfs-showcase__slide.is-active { transform: translate3d(0, 0, 0); }
.gfcfs-effect-slide-left .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-right .gfcfs-showcase__slide.is-leaving { opacity: 1; }

/* Vertical slides */
.gfcfs-effect-slide-up .gfcfs-showcase__slide,
.gfcfs-effect-slide-down .gfcfs-showcase__slide { transition-property: opacity, transform, visibility; }
.gfcfs-effect-slide-up[data-direction="next"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-up[data-direction="prev"] .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-down[data-direction="prev"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-down[data-direction="next"] .gfcfs-showcase__slide.is-leaving { transform: translate3d(0, 100%, 0); }
.gfcfs-effect-slide-up[data-direction="prev"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-up[data-direction="next"] .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-down[data-direction="next"] .gfcfs-showcase__slide:not(.is-active):not(.is-leaving),
.gfcfs-effect-slide-down[data-direction="prev"] .gfcfs-showcase__slide.is-leaving { transform: translate3d(0, -100%, 0); }
.gfcfs-effect-slide-up .gfcfs-showcase__slide.is-active,
.gfcfs-effect-slide-down .gfcfs-showcase__slide.is-active { transform: translate3d(0, 0, 0); }
.gfcfs-effect-slide-up .gfcfs-showcase__slide.is-leaving,
.gfcfs-effect-slide-down .gfcfs-showcase__slide.is-leaving { opacity: 1; }

/* Gentle zoom */
.gfcfs-effect-zoom-fade .gfcfs-showcase__slide { transform: scale(1.035); transition-property: opacity, transform, visibility; }
.gfcfs-effect-zoom-fade .gfcfs-showcase__slide.is-active { transform: scale(1); }
.gfcfs-effect-zoom-fade .gfcfs-showcase__slide.is-leaving { opacity: 0; transform: scale(1.02); }
.gfcfs-effect-none .gfcfs-showcase__slide { transition: none !important; }

.gfcfs-showcase__control {
  display: inline-grid;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(20,18,15,.72);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.gfcfs-showcase__control:hover { background: rgba(20,18,15,.94); transform: translateY(-1px); }
.gfcfs-showcase__control:focus-visible,
.gfcfs-showcase__dots button:focus-visible,
.gfcfs-showcase__button:focus-visible,
.gfcfs-showcase__image-link:focus-visible { outline: 3px solid #2271b1; outline-offset: 3px; }
.gfcfs-showcase__control:disabled { opacity: .38; cursor: default; transform: none; }
.gfcfs-showcase__control svg { display: block; width: 20px; height: 20px; }
.gfcfs-showcase__arrows { position: absolute; inset: 50% 14px auto; z-index: 5; display: flex; justify-content: space-between; pointer-events: none; transform: translateY(-50%); }
.gfcfs-showcase__arrows .gfcfs-showcase__control { pointer-events: auto; }
.gfcfs-showcase__pause { position: absolute; right: 14px; bottom: 14px; z-index: 6; }
.gfcfs-showcase__pause-icon { position: relative; display: block; width: 14px; height: 16px; border-right: 4px solid currentColor; border-left: 4px solid currentColor; }
.gfcfs-showcase__pause[aria-pressed="true"] .gfcfs-showcase__pause-icon { width: 0; height: 0; margin-left: 3px; border: 8px solid transparent; border-right: 0; border-left: 12px solid currentColor; }

.gfcfs-showcase__dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 0 0; }
.gfcfs-showcase__dots button { position: relative; width: 44px; height: 32px; margin: 0; padding: 0; border: 0; background: transparent; cursor: pointer; }
.gfcfs-showcase__dots button::after { position: absolute; top: 50%; left: 50%; width: 24px; height: 3px; border-radius: 999px; background: currentColor; opacity: .28; content: ""; transform: translate(-50%, -50%); transition: opacity .2s ease, width .2s ease; }
.gfcfs-showcase__dots button[aria-current="true"]::after { width: 32px; opacity: .9; }

.gfcfs-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: var(--gfcfs-content-max, 560px);
  padding: 0;
  color: var(--gfcfs-heading-color, #1d1b18);
  background: var(--gfcfs-content-bg, transparent);
}
.gfcfs-layout-image-right .gfcfs-showcase__content { justify-self: end; }
.gfcfs-showcase__eyebrow { margin: 0 0 18px; color: var(--gfcfs-eyebrow-color, #77736c); font-family: var(--gfcfs-eyebrow-font, system-ui, sans-serif); font-size: var(--gfcfs-eyebrow-size, 12px); font-weight: var(--gfcfs-eyebrow-weight, 600); line-height: 1.25; letter-spacing: var(--gfcfs-eyebrow-spacing, 1.8px); text-transform: uppercase; }
.gfcfs-showcase__heading { max-width: 100%; margin: 0; color: var(--gfcfs-heading-color, #1d1b18); font-family: var(--gfcfs-heading-font, system-ui, sans-serif); font-size: var(--gfcfs-heading-d, 52px); font-weight: var(--gfcfs-heading-weight, 400); line-height: var(--gfcfs-heading-lh, 1.05); letter-spacing: -.025em; overflow-wrap: anywhere; }
.gfcfs-showcase__heading em { color: var(--gfcfs-emphasis-color, currentColor); font-family: var(--gfcfs-emphasis-font, Georgia, serif); font-style: var(--gfcfs-emphasis-style, italic); font-weight: inherit; }
.gfcfs-showcase__description { max-width: 52ch; margin: 24px 0 0; color: var(--gfcfs-desc-color, #5f5b54); font-family: var(--gfcfs-eyebrow-font, system-ui, sans-serif); font-size: var(--gfcfs-desc-d, 16px); line-height: var(--gfcfs-desc-lh, 1.7); overflow-wrap: anywhere; }
.gfcfs-showcase__button-wrap { display: flex; width: 100%; margin-top: 30px; }
.gfcfs-showcase__button-wrap.gfcfs-align-left { justify-content: flex-start; }
.gfcfs-showcase__button-wrap.gfcfs-align-center { justify-content: center; }
.gfcfs-showcase__button-wrap.gfcfs-align-right { justify-content: flex-end; }
.gfcfs-showcase__button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-width: 44px; min-height: 44px; max-width: 100%; padding: var(--gfcfs-button-pad-y, 15px) var(--gfcfs-button-pad-x, 28px); border: 1px solid var(--gfcfs-button-border, #1d1b18); border-radius: var(--gfcfs-button-radius, 999px); color: var(--gfcfs-button-color, #fff); background: var(--gfcfs-button-bg, #1d1b18); font-family: var(--gfcfs-eyebrow-font, system-ui, sans-serif); font-size: var(--gfcfs-button-size, 14px); font-weight: var(--gfcfs-button-weight, 600); line-height: 1.2; text-align: center; text-decoration: none; overflow-wrap: anywhere; transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease; }
.gfcfs-showcase__button:hover { color: var(--gfcfs-button-hover, #fff); background: var(--gfcfs-button-hover-bg, #3c3832); text-decoration: none; transform: translateY(-1px); }
.gfcfs-showcase__button svg { flex: 0 0 auto; width: 18px; height: 18px; transition: transform .22s ease; }
.gfcfs-showcase__button:hover svg { transform: translateX(2px); }

.gfcfs-is-single .gfcfs-showcase__slide { position: absolute; }
.gfcfs-showcase .screen-reader-text { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 1023.98px) {
  .gfcfs-showcase { padding: var(--gfcfs-pad-t, 64px) var(--gfcfs-side-t, 28px); }
  .gfcfs-showcase__inner { grid-template-columns: minmax(0, 1fr); align-items: start; gap: var(--gfcfs-gap-t, 40px); }
  .gfcfs-showcase__content { max-width: min(100%, var(--gfcfs-content-max, 560px)); justify-self: start; }
  .gfcfs-mobile-image-first .gfcfs-showcase__media-column { order: 1; }
  .gfcfs-mobile-image-first .gfcfs-showcase__content { order: 2; }
  .gfcfs-mobile-content-first .gfcfs-showcase__content { order: 1; }
  .gfcfs-mobile-content-first .gfcfs-showcase__media-column { order: 2; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__content { display: contents; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__eyebrow { order: 1; margin-bottom: -22px; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__heading { order: 2; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__media-column { order: 3; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__description { order: 4; margin-top: -16px; }
  .gfcfs-mobile-image-middle .gfcfs-showcase__button-wrap { order: 5; margin-top: -12px; }
  .gfcfs-ratio-auto .gfcfs-showcase__media { height: var(--gfcfs-height-t, 500px); }
  .gfcfs-showcase__heading { font-size: var(--gfcfs-heading-t, 44px); }
  .gfcfs-showcase__description { font-size: var(--gfcfs-desc-t, 16px); }
}

@media (max-width: 767.98px) {
  .gfcfs-showcase { padding: var(--gfcfs-pad-m, 40px) var(--gfcfs-side-m, 20px); }
  .gfcfs-showcase__inner { gap: var(--gfcfs-gap-m, 28px); }
  .gfcfs-ratio-auto .gfcfs-showcase__media { height: var(--gfcfs-height-m, 340px); }
  .gfcfs-showcase__heading { font-size: var(--gfcfs-heading-m, 36px); letter-spacing: -.02em; }
  .gfcfs-showcase__description { margin-top: 20px; font-size: var(--gfcfs-desc-m, 15px); }
  .gfcfs-showcase__button-wrap { margin-top: 24px; }
  .gfcfs-showcase__button { width: auto; }
  .gfcfs-showcase__arrows { right: 10px; left: 10px; }
  .gfcfs-showcase__pause { right: 10px; bottom: 10px; }
}

@media (max-width: 389.98px) {
  .gfcfs-showcase__button { width: 100%; }
  .gfcfs-showcase__button-wrap { justify-content: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .gfcfs-showcase *,
  .gfcfs-showcase *::before,
  .gfcfs-showcase *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .gfcfs-showcase__button:hover,
  .gfcfs-showcase__control:hover { transform: none; }
}
