
/* Gymful scoped Swiper base repair (persona) */
.gymful-persona-swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.gymful-persona-swiper .swiper-slide {
  flex-shrink: 0 !important;
  position: relative;
  transition-property: transform;
}

.gymful-persona-swiper {
  --persona-gap: 8px;
  --persona-nav-gap: 28px;
  --persona-bullet-width: 36px;
  --persona-bullet-height: 2px;
  --persona-bullet-gap: 8px;
  --persona-bullet-radius: 999px;
  --persona-layout-max-width: 1720px;
  --persona-layout-padding-inline: 0px;
  width: 100%;
  overflow: visible;
}

.gymful-persona-swiper * { box-sizing: border-box; }

.gymful-persona-swiper__layout {
  display: flex;
  width: 100%;
  max-width: var(--persona-layout-max-width, 1720px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--persona-layout-padding-inline, 0px);
  padding-right: var(--persona-layout-padding-inline, 0px);
  align-items: center;
  overflow: visible;
}

.gymful-persona-swiper__intro {
  flex: 0 0 300px;
  min-width: 0;
}

.persona-intro-label { margin: 0 0 12px; font-size: 15px; line-height: 1.3; }
.persona-intro-heading { margin: 0 0 16px; font-size: clamp(32px, 4vw, 56px); line-height: 1.08; font-weight: 800; text-transform: uppercase; }
.persona-intro-text { margin: 0 0 28px; font-size: 18px; line-height: 1.55; }
.persona-intro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
}

.gymful-persona-swiper__slider {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.gymful-persona-swiper .swiper { width: 100%; overflow: visible; }
.gymful-persona-swiper .swiper-wrapper { align-items: stretch; }
.gymful-persona-swiper .swiper-slide { height: auto; flex-shrink: 0; }

.gymful-persona-swiper:not(.swiper-initialized) .swiper-wrapper,
.gymful-persona-swiper:not(.is-swiper-enabled) .swiper-wrapper {
  display: flex;
  gap: var(--persona-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gymful-persona-swiper:not(.swiper-initialized) .swiper-wrapper::-webkit-scrollbar,
.gymful-persona-swiper:not(.is-swiper-enabled) .swiper-wrapper::-webkit-scrollbar { display: none; }
.gymful-persona-swiper:not(.swiper-initialized) .swiper-slide,
.gymful-persona-swiper:not(.is-swiper-enabled) .swiper-slide { margin-right: var(--persona-gap); scroll-snap-align: start; }

.persona-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 590px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  transform: translateY(0);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1), border-color .3s;
}
.persona-card:hover { transform: translateY(-8px); }

.persona-card__media {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}
.persona-card__image,
.persona-card__video,
.persona-card__iframe,
.persona-card__video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.persona-card__image,
.persona-card__video,
.persona-card__iframe {
  object-fit: cover;
  object-position: center center;
  border: 0;
}
.persona-card__image { z-index: 0; }
.persona-card__video-layer { z-index: 1; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.persona-card:hover .persona-card__video-layer { opacity: 1; }
.persona-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.34);
  pointer-events: none;
}
.persona-card__labels {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.persona-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 12px;
  border: 1px solid #d7c34c;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(0,0,0,.12);
}
.persona-card__button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  max-width: calc(100% - 44px);
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.persona-card__body {
  padding: 28px;
  background: #fff;
  flex: 1 1 auto;
}
.persona-card__title { margin: 0 0 12px; color: #000; font-size: 24px; line-height: 1.2; font-weight: 500; }
.persona-card__description { margin: 0; color: #000; font-size: 18px; line-height: 1.45; }

.persona-swiper-controls {
  width: fit-content !important;
  max-width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--persona-nav-gap, 28px) !important;
  flex-wrap: nowrap !important;
  margin-top: 25px;
}
.persona-swiper-arrow,
.persona-swiper-play {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  line-height: 0;
  flex: 0 0 auto;
}
.persona-swiper-arrow svg { width: 10px; height: 10px; display: block; }
.persona-swiper-arrow i { font-size: 10px; width: 10px; height: 10px; line-height: 10px; display: inline-flex; align-items: center; justify-content: center; }
.persona-swiper-play svg { width: 10px; height: 10px; display: block; }
.persona-swiper-play i { font-size: 10px; width: 10px; height: 10px; line-height: 10px; display: inline-flex; align-items: center; justify-content: center; }
.persona-swiper-play-icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.persona-swiper-play .persona-swiper-icon-play { display: inline-flex; }
.persona-swiper-play .persona-swiper-icon-pause { display: none; }
.persona-swiper-play.is-playing .persona-swiper-icon-play { display: none; }
.persona-swiper-play.is-playing .persona-swiper-icon-pause { display: inline-flex; }
.persona-swiper-arrow.swiper-button-disabled { opacity: .45; cursor: default; }
.persona-swiper-arrow svg,
.persona-swiper-arrow i,
.persona-swiper-play svg,
.persona-swiper-play i { color: currentColor; }

/* v1.2.3: keep navigation icons clean. Some themes/Elementor button resets add hover backgrounds to button elements; explicitly neutralize those states. */
.persona-swiper-arrow,
.persona-swiper-arrow:hover,
.persona-swiper-arrow:focus,
.persona-swiper-arrow:active,
.persona-swiper-play,
.persona-swiper-play:hover,
.persona-swiper-play:focus,
.persona-swiper-play:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none;
}

.persona-swiper-arrow::before,
.persona-swiper-arrow::after,
.persona-swiper-arrow:hover::before,
.persona-swiper-arrow:hover::after,
.persona-swiper-arrow:focus::before,
.persona-swiper-arrow:focus::after,
.persona-swiper-play::before,
.persona-swiper-play::after,
.persona-swiper-play:hover::before,
.persona-swiper-play:hover::after,
.persona-swiper-play:focus::before,
.persona-swiper-play:focus::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.persona-swiper-pagination {
  position: static !important;
  width: auto !important;
  max-width: max-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--persona-bullet-gap);
  flex: 0 0 auto !important;
}
.persona-swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: var(--persona-bullet-width);
  height: var(--persona-bullet-height);
  border-radius: var(--persona-bullet-radius);
  background: #8a8a8a;
  opacity: 1;
  margin: 0 !important;
}
.persona-swiper-pagination .swiper-pagination-bullet-active { background: #000; }

@media (max-width: 767px) {
  .gymful-persona-swiper__layout { flex-direction: column; align-items: stretch; }
  .gymful-persona-swiper__intro { flex-basis: auto; width: 100%; }
  .gymful-persona-swiper__slider { width: 100%; }
}


/* COMMIT radial-fill button system */
.persona-intro-button,
.persona-card__button {
  --persona-button-bg: transparent;
  --persona-button-fill: #C6B04F;
  --persona-button-border: #C6B04F;
  --persona-button-hover-border: var(--persona-button-fill);
  --persona-button-text: #111;
  --persona-button-hover-text: #111;
  overflow: hidden !important;
  isolation: isolate;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--persona-button-bg) !important;
  border: 1px solid var(--persona-button-border) !important;
  color: var(--persona-button-text) !important;
  transition:
    color 0.35s cubic-bezier(.19, 1, .22, 1),
    border-color 0.35s cubic-bezier(.19, 1, .22, 1);
}

.persona-intro-button {
  position: relative !important;
}

.persona-card__button {
  position: absolute !important;
  right: 22px;
  bottom: 22px;
}

.persona-intro-button::before,
.persona-card__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--persona-button-fill);
  border-radius: inherit;
  clip-path: circle(0% at 0% 100%);
  pointer-events: none;
  will-change: clip-path;
  transition: clip-path 0.82s cubic-bezier(.19, 1, .22, 1);
}

.persona-intro-button:hover,
.persona-intro-button:focus,
.persona-card__button:hover,
.persona-card__button:focus {
  color: var(--persona-button-hover-text) !important;
  border-color: var(--persona-button-hover-border) !important;
}

.persona-intro-button:hover::before,
.persona-intro-button:focus::before,
.persona-card__button:hover::before,
.persona-card__button:focus::before {
  clip-path: circle(155% at 0% 100%);
}

.persona-button-content-wrapper {
  position: relative !important;
  z-index: 3 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.persona-button-text,
.persona-button-icon {
  position: relative !important;
  z-index: 3 !important;
}

.persona-button-icon {
  font-size: 8px;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.35s cubic-bezier(.19, 1, .22, 1);
}

.persona-button-icon svg,
.persona-button-icon i {
  width: 1em;
  height: 1em;
  display: block;
}

.persona-intro-button:hover .persona-button-icon,
.persona-intro-button:focus .persona-button-icon,
.persona-card__button:hover .persona-button-icon,
.persona-card__button:focus .persona-button-icon {
  transform: translateX(3px);
}


/* v1.2.2.1 stable layering/responsive fix
   Prevent swiper slides from visually crossing over the intro text block.
   The slider clips horizontal overflow on desktop, while keeping enough top space
   for the active/hover card lift. On smaller screens the intro stacks above the slider. */
.gymful-persona-swiper__intro {
  position: relative;
  z-index: 3;
}

.gymful-persona-swiper__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 16px;
}

.gymful-persona-swiper__slider .persona-swiper-instance {
  overflow: visible;
}

@media (max-width: 1180px) {
  .gymful-persona-swiper__layout {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 32px;
  }

  .gymful-persona-swiper__intro {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .gymful-persona-swiper__slider {
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible;
    padding-top: 16px;
  }
}

@media (max-width: 767px) {
  .gymful-persona-swiper__layout {
    gap: 24px;
  }
}


/* v1.2.2.3 left-only boundary clip
   Clips the carousel at the left edge of the slider so it stops at the text column,
   but allows the slides to extend fully to the right side of the viewport. */
@media (min-width: 1181px) {
  .gymful-persona-swiper__layout {
    isolation: isolate;
  }

  .gymful-persona-swiper__intro {
    z-index: 4;
  }

  .gymful-persona-swiper__slider {
    z-index: 1;
    overflow: visible !important;
    -webkit-clip-path: inset(-90px -120vw -180px 0);
    clip-path: inset(-90px -120vw -180px 0);
  }

  .gymful-persona-swiper__slider .persona-swiper-instance,
  .gymful-persona-swiper__slider .swiper-wrapper {
    overflow: visible !important;
  }
}
