.gymful-blog-cards-swiper {
  --gbcs-gap: 24px;
  width: 100%;
  position: relative;
}

.gymful-blog-cards-swiper,
.gymful-blog-cards-swiper * {
  box-sizing: border-box;
}

.gbcs-heading {
  margin-bottom: 38px;
}

.gbcs-eyebrow {
  font-family: "Cerebri Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 8px;
}

.gbcs-title {
  font-family: "Cerebri Sans", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.gbcs-swiper {
  width: 100%;
  overflow: visible;
}

.gymful-blog-cards-swiper:not(.is-mobile-swiper) .gbcs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gbcs-gap);
  transform: none !important;
}

.gymful-blog-cards-swiper:not(.is-mobile-swiper) .gbcs-slide {
  width: auto !important;
  height: auto;
}

.gbcs-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gbcs-card:hover {
  transform: translateY(-4px);
}

.gbcs-media-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

.gbcs-media {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(198,176,78,0.12);
  isolation: isolate;
}

.gbcs-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(.22,1,.36,1);
  z-index: 0;
}

.gbcs-card:hover .gbcs-media img {
  transform: scale(1.045);
}

.gbcs-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(32,20,12,0.58) 100%);
}

.gbcs-media-top {
  position: absolute;
  top: 28px;
  left: 34px;
  right: 34px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.gbcs-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 20px 6px;
  border: 1px solid #C6B04E;
  border-radius: 999px;
  font-family: "Cerebri Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F8F4ED;
}

.gbcs-reading-time {
  margin-top: 8px;
  font-family: "Cerebri Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.gbcs-media-title {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  margin: 0;
  font-family: "Cerebri Sans", sans-serif;
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: #fff;
}

.gbcs-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 24px 24px 28px;
}

.gbcs-excerpt {
  width: 100%;
  font-family: "Cerebri Sans", sans-serif;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: #111;
  margin-bottom: 28px;
}

.gbcs-read-more,
.gbcs-bottom-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 34px;
  border-radius: 999px;
  border: 1px solid #C6B04E;
  text-decoration: none !important;
  font-family: "Cerebri Sans", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #111;
  background: transparent;
  overflow: hidden;
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.gbcs-read-more {
  align-self: center;
  margin-top: auto;
}

.gbcs-read-more::before,
.gbcs-bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #C6B04E;
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.55s cubic-bezier(.22,1,.36,1);
}

.gbcs-read-more:hover::before,
.gbcs-read-more:focus-visible::before,
.gbcs-bottom-cta:hover::before,
.gbcs-bottom-cta:focus-visible::before {
  clip-path: circle(155% at 0% 100%);
}

.gbcs-read-more:hover,
.gbcs-read-more:focus-visible,
.gbcs-bottom-cta:hover,
.gbcs-bottom-cta:focus-visible {
  transform: translateY(-1px);
}

.gbcs-bottom-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.gbcs-bottom-cta {
  background: #C6B04E;
  border-color: #C6B04E;
  min-height: 64px;
  padding: 18px 48px;
  font-size: 18px;
}

.gbcs-bottom-cta::before {
  background: rgba(255,255,255,0.22);
}

.gbcs-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  width: auto;
  max-width: 100%;
}

.gbcs-arrow {
  appearance: none;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 6px !important;
  color: #111;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.gbcs-arrow:hover,
.gbcs-arrow:focus,
.gbcs-arrow:active {
  background: transparent !important;
  box-shadow: none !important;
}

.gbcs-lines {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: min(70vw, 420px);
  overflow: hidden;
}

.gbcs-line {
  appearance: none;
  border: 0 !important;
  padding: 0 !important;
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17,17,17,0.32);
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.gbcs-line.is-active {
  background: #111;
}

.gymful-blog-cards-swiper.is-mobile-swiper .gbcs-swiper {
  overflow: hidden;
}

.gymful-blog-cards-swiper.is-mobile-swiper .gbcs-wrapper {
  display: flex;
  gap: 0;
}

.gymful-blog-cards-swiper.is-mobile-swiper .gbcs-slide {
  width: 86vw;
  height: auto;
  flex-shrink: 0;
}

.gymful-blog-cards-swiper.is-mobile-swiper .gbcs-nav,
.gymful-blog-cards-swiper.is-mobile-fallback .gbcs-nav {
  display: flex;
}

.gymful-blog-cards-swiper.is-mobile-fallback .gbcs-swiper {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gymful-blog-cards-swiper.is-mobile-fallback .gbcs-swiper::-webkit-scrollbar {
  display: none;
}

.gymful-blog-cards-swiper.is-mobile-fallback .gbcs-wrapper {
  display: flex;
  gap: var(--gbcs-gap);
  transform: none !important;
}

.gymful-blog-cards-swiper.is-mobile-fallback .gbcs-slide {
  flex: 0 0 86vw;
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .gbcs-heading {
    margin-bottom: 26px;
  }

  .gbcs-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .gbcs-media {
    height: 300px;
  }

  .gbcs-media-top {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .gbcs-media-title {
    left: 22px;
    right: 22px;
    bottom: 26px;
    font-size: 25px;
    letter-spacing: 0.06em;
  }

  .gbcs-body {
    padding: 20px 20px 24px;
  }

  .gbcs-excerpt {
    font-size: 18px;
    line-height: 1.48;
  }

  .gbcs-bottom-cta-wrap {
    margin-top: 28px;
  }

  .gbcs-bottom-cta {
    min-height: 54px;
    padding: 16px 34px;
    font-size: 16px;
  }
}

/* v1.0.1 cleanup: this widget no longer renders its own section heading. */
.gbcs-icon,
.gbcs-btn-icon,
.gbcs-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: 0 0 auto;
  color: currentColor;
}

.gbcs-btn-icon svg,
.gbcs-nav-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  overflow: visible;
}

.gbcs-btn-icon i,
.gbcs-nav-icon i {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}

.gbcs-read-more,
.gbcs-bottom-cta {
  gap: 8px;
}

.gbcs-arrow,
.gbcs-arrow:hover,
.gbcs-arrow:focus,
.gbcs-arrow:active {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.gbcs-arrow::before,
.gbcs-arrow::after,
.gbcs-arrow:hover::before,
.gbcs-arrow:hover::after {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.gbcs-arrow svg {
  display: block;
  width: 12px;
  height: 12px;
  overflow: visible;
}

.gbcs-arrow i,
.gbcs-arrow-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
