.stk-financia {
  --stk-financia-bg: #f2f2e7;
  overflow: hidden;
  padding: 4.75rem 0 2.75rem;
  position: relative;
}

.stk-financia::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 131, 96, 0.12), transparent 38%),
    radial-gradient(circle at 80% 15%, rgba(123, 131, 96, 0.08), transparent 28%),
    repeating-linear-gradient(115deg, rgba(123, 131, 96, 0.06) 0, rgba(123, 131, 96, 0.06) 1px, transparent 1px, transparent 44px);
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.stk-financia .container {
  position: relative;
  z-index: 1;
}

.stk-financia__hero {
  margin: 0 auto 3.5rem;
  max-width: 40rem;
  text-align: center;
}

.stk-financia__overtitle {
  color: #5f624b;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

.stk-financia__title {
  color: #4d523e;
  font-size: clamp(2.75rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0 0 1.4rem;
}

.stk-financia__description {
  color: #5b5e4a;
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 33rem;
}

.stk-financia__description p:last-child {
  margin-bottom: 0;
}

.stk-financia__cta {
  align-items: center;
  border: 1px solid #3b3d30;
  border-radius: 999px;
  color: #3b3d30;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: 1.75rem;
  min-height: 3.25rem;
  min-width: 12.5rem;
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stk-financia__cta:hover {
  background: #3b3d30;
  border-color: #3b3d30;
  color: #f2f2e7;
  text-decoration: none;
}

.stk-financia__cards {
  --swiffy-slider-item-gap: 1.25rem;
  --swiffy-slider-indicator-active: #7f7a64;
  --swiffy-slider-indicator-default: #dbd7c7;
}

.stk-financia__cards-outer {
  position: relative;
  z-index: 1;
}

.stk-financia__cards .slider-container {
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .stk-financia__cards .slider-container {
    display: grid;
    gap: 1.25rem;
    grid-auto-columns: unset;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .stk-financia__cards .slider-container > * {
    scroll-snap-align: unset;
  }

  .stk-financia__cards .slider-indicators {
    display: none;
  }
}

@media (min-width: 992px) {
  .stk-financia__cards {
    margin: 0 auto;
  }

  .stk-financia__cards .slider-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stk-financia__slide {
  height: auto;
}

.stk-financia-card {
  align-items: center;
  background: #4d4e48;
  border-radius: 0.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 8.6rem minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  padding: 0.55rem;
}

.stk-financia-card__media {
  aspect-ratio: 1.15 / 1;
  border-radius: 0.18rem;
  overflow: hidden;
}

.stk-financia-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.stk-financia-card__content {
  color: #f5f1e3;
  min-width: 0;
  padding-right: 0.35rem;
}

.stk-financia-card__title {
  color: #ffffff;
  font-family: var(--bs-body-font-family);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 0.45rem;
}

.stk-financia-card__description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.55;
}

.stk-financia-card__description p:last-child {
  margin-bottom: 0;
}

.stk-financia__cards .slider-indicators {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.stk-financia__cards .slider-indicators button {
  background: #dbd7c7;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font-size: 0;
  height: 0.16rem;
  margin: 0;
  opacity: 1;
  padding: 0;
  transition: background-color 0.2s ease, width 0.2s ease;
  width: 1.1rem;
}

.stk-financia__cards .slider-indicators button.active {
  background: #7f7a64;
  border: 0;
  padding: 0;
  width: 1.1rem;
}

@media (max-width: 1199.98px) {
  .stk-financia-card {
    grid-template-columns: 10rem minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  .stk-financia {
    padding: 3.25rem 0 2.5rem;
  }

  .stk-financia .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .stk-financia__hero {
    margin-bottom: 2.1rem;
    max-width: 19rem;
  }

  .stk-financia__title {
    font-size: 3.2rem;
    line-height: 1.02;
    margin-bottom: 1rem;
  }

  .stk-financia__description {
    font-size: 0.98rem;
    line-height: 1.8;
    max-width: 18rem;
  }

  .stk-financia__cta {
    margin-top: 1.4rem;
    min-width: 11.75rem;
  }

  .stk-financia__cards {
    --swiffy-slider-item-gap: 0.9rem;
  }

  .stk-financia-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0.6rem;
  }

  .stk-financia-card__media {
    aspect-ratio: 1.5 / 1;
  }

  .stk-financia-card__content {
    padding: 0 0.15rem 0.2rem;
  }
}




@media (min-width: 768px) {
  .stk-financia__cards .slider-indicators {
    display: none;
  }
}
