/*
 * SoniTech Feature Card styles.
 * The skin class is applied to the outer `.stea-cards` wrapper. HTML classes
 * inside each card intentionally follow the supplied Hactora markup.
 */
:root {
  --thm-primary: #ff5203;
  --heading-font: inherit;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.stea-cards {
  display: grid;
  gap: 24px;
}
.stea-view-list {
  display: flex;
  flex-direction: column;
}
.stea-view-list .stea-feature-card {
  display: grid;
  grid-template-columns: minmax(180px, 32%) 1fr;
}
.stea-view-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stea-feature-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.stea-feature-card:hover {
  transform: translateY(-4px);
}
.stea-feature-media {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stea-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stea-feature-icon {
  font-size: 42px;
}

.stea-feature-title {
  margin: 0 0 12px;
}
.stea-feature-description {
  margin-bottom: 16px;
}
.stea-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.875em;
  opacity: 0.75;
}
.stea-feature-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.stea-skin-two .stea-feature-card {
  border-left: 4px solid currentColor;
}
.stea-skin-three .stea-feature-card {
  text-align: center;
}
.stea-skin-four .stea-feature-card {
  position: relative;
}
.stea-skin-four .stea-feature-card__body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  color: #fff;
  margin-top: -120px;
  position: relative;
  padding-top: 70px;
}
.stea-view-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.stea-slider-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 24px;
  width: 100%;
}
.stea-slider-track > .stea-feature-card {
  flex: 0 0 min(100%, 360px);
}
.stea-slider-prev,
.stea-slider-next {
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 24px;
  flex: 0 0 auto;
}
.stea-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.stea-error {
  color: #b32d2e;
}
.stea-empty {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .stea-view-grid {
    grid-template-columns: 1fr;
  }
  .stea-view-list .stea-feature-card {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
 * SHARED FILTER BAR
 * Buttons are generated from category, tag or meta values already present
 * in the normalized card data. JavaScript toggles .is-hidden on cards.
 * ===================================================================== */
.stea-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
}
.stea-filter-button {
  border: 0;
  background: #f2f2f2;
  color: #222;
  padding: 10px 18px;
  cursor: pointer;
  transition: 0.25s;
}
.stea-filter-button:hover,
.stea-filter-button.is-active {
  background: #ff4f0a;
  color: #fff;
}
.stea-feature-card.is-hidden {
  display: none !important;
}

/* Common content pieces shared by all seven skins. */
.stea-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #777;
}
.stea-feature-meta span + span:before {
  content: "|";
  margin-right: 10px;
  color: #bbb;
}
.stea-feature-badge {
  display: inline-block;
  background: #ff4f0a;
  color: #fff;
  padding: 7px 16px;
  font-size: 13px;
  margin-bottom: 14px;
}
.stea-feature-tags,
.stea-feature-custom-meta {
  font-size: 13px;
  color: #777;
  margin-top: 12px;
}
.stea-feature-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #222;
  color: #fff;
  text-decoration: none;
}
.stea-feature-button:hover {
  background: #ff4f0a;
  color: #fff;
}

/* SKIN ONE – classic icon service card with orange hover treatment. */
.stea-skin-one .stea-feature-card {
  padding: 46px 38px;
  background: #fff;
  transition: 0.3s;
}
.stea-skin-one .stea-feature-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1eb;
  color: #ff4f0a;
  margin-bottom: 28px;
}
.stea-skin-one .stea-feature-card:hover {
  background: #ff4f0a;
  color: #fff;
}
.stea-skin-one .stea-feature-card:hover .stea-feature-title,
.stea-skin-one .stea-feature-card:hover .stea-feature-description,
.stea-skin-one .stea-feature-card:hover .stea-feature-meta {
  color: #fff;
}

/* SKIN TWO – engineering card: large image, number, icon and text body. */
.stea-skin-two .stea-feature-card {
  background: #fff;
  position: relative;
}
.stea-skin-two .stea-feature-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.stea-skin-two .stea-feature-card__body {
  position: relative;
  padding: 34px 40px 40px;
}
.stea-skin-two .stea-feature-card__body:after {
  content: counter(stea-card, decimal-leading-zero);
  position: absolute;
  right: 28px;
  top: 18px;
  font-size: 38px;
  color: transparent;
  -webkit-text-stroke: 1px #bbb;
}
.stea-skin-two {
  counter-reset: stea-card;
}
.stea-skin-two .stea-feature-card {
  counter-increment: stea-card;
}
.stea-skin-two .stea-feature-icon {
  color: #ff4f0a;
  font-size: 44px;
  margin-bottom: 18px;
}

/* SKIN THREE – blog/news card with image and compact metadata. */
.stea-skin-three .stea-feature-card {
  background: #fff;
}
.stea-skin-three .stea-feature-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.stea-skin-three .stea-feature-card__body {
  padding: 30px;
}
.stea-skin-three .stea-feature-title {
  font-size: 24px;
}
.stea-skin-three .stea-feature-meta--top {
  margin-bottom: 16px;
}
.stea-skin-three .stea-feature-button {
  background: transparent;
  color: #222;
  padding: 0;
  font-weight: 600;
}

/* SKIN FOUR – portfolio overlay card. Content becomes visible over image. */
.stea-skin-four .stea-feature-card {
  position: relative;
  min-height: 360px;
  background: #aaa;
  overflow: hidden;
}
.stea-skin-four .stea-feature-image,
.stea-skin-four .stea-feature-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stea-skin-four .stea-feature-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 36px;
  background: rgba(15, 15, 15, 0.82);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}
.stea-skin-four .stea-feature-card:hover .stea-feature-card__body {
  opacity: 1;
}
.stea-skin-four .stea-feature-title,
.stea-skin-four .stea-feature-description,
.stea-skin-four .stea-feature-meta {
  color: #fff;
}

/* SKIN FIVE – category badge service card. */
.stea-skin-five .stea-feature-card {
  background: #fff;
}
.stea-skin-five .stea-feature-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.stea-skin-five .stea-feature-card__body {
  padding: 34px 38px;
}
.stea-skin-five .stea-feature-description {
  margin-top: 10px;
}
.stea-skin-five .stea-feature-button {
  background: #222;
}

/* SKIN SIX – centered minimalist icon box from the additional screenshot. */
.stea-skin-six .stea-feature-card {
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  padding: 42px 32px;
  min-height: 320px;
}
.stea-skin-six .stea-feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  font-size: 46px;
}
.stea-skin-six .stea-feature-title {
  font-weight: 500;
}
.stea-skin-six .stea-feature-description {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* SKIN SEVEN – large image, badge, description and dark button. */
.stea-skin-seven .stea-feature-card {
  background: #fff;
}
.stea-skin-seven .stea-feature-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.stea-skin-seven .stea-feature-card__body {
  padding: 38px 40px;
}
.stea-skin-seven .stea-feature-title {
  font-size: 24px;
}
.stea-skin-seven .stea-feature-button {
  background: #222;
}

/* View modes. Grid columns are normally controlled by Elementor selectors. */
.stea-view-grid {
  display: grid;
}
.stea-view-list {
  display: flex;
  flex-direction: column;
}
.stea-view-list .stea-feature-card {
  display: grid;
  grid-template-columns: minmax(220px, 35%) 1fr;
}
.stea-view-list .stea-feature-image img {
  height: 100%;
  min-height: 240px;
}
.stea-view-slider {
  position: relative;
}
.stea-slider-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.stea-slider-track > .stea-feature-card {
  min-width: 100%;
}
.stea-slider-prev,
.stea-slider-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  cursor: pointer;
}
.stea-slider-prev {
  left: 10px;
}
.stea-slider-next {
  right: 10px;
}

@media (max-width: 767px) {
  .stea-view-list .stea-feature-card {
    grid-template-columns: 1fr;
  }
  .stea-skin-two .stea-feature-image img,
  .stea-skin-five .stea-feature-image img,
  .stea-skin-seven .stea-feature-image img {
    height: 220px;
  }
}

/* ==========================================================================
   Shared component variables
   ========================================================================== */
:root {
  --stea-accent: #ff4f0a;
  --stea-dark: #151a24;
  --stea-text: #252525;
  --stea-muted: #7b7b7b;
  --stea-light: #f6f7f9;
  --stea-radius: 4px;
  --stea-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.stea-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.stea-button--primary {
  color: #fff;
  background: var(--stea-accent);
}

.stea-button--secondary {
  color: var(--stea-text);
  background: #fff;
}

/* Page banner */
.stea-page-banner {
  position: relative;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.stea-page-banner::before {
  position: absolute;
  inset: 0;
  content: "";
}

.stea-page-banner__inner {
  position: relative;
  z-index: 1;
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

.stea-page-banner__title {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 68px);
}

.stea-page-banner__breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.stea-page-banner__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

/* Hero slider */
.stea-hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--stea-dark);
}

.stea-hero-slider__track,
.stea-hero-slider__slide {
  min-height: inherit;
}

.stea-hero-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-position: center;
  background-size: cover;
  transition: opacity 0.5s ease;
}

.stea-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.stea-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 16, 29, 0.88),
    rgba(8, 16, 29, 0.22)
  );
}

.stea-hero-slider__content {
  position: relative;
  z-index: 2;
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
}

.stea-hero-slider__eyebrow {
  margin-bottom: 14px;
  color: var(--stea-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stea-hero-slider h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  color: #fff;
}

.stea-hero-slider p {
  max-width: 620px;
  font-size: 18px;
}

.stea-hero-slider__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stea-hero-slider__prev,
.stea-hero-slider__next {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
  cursor: pointer;
}

.stea-hero-slider__prev {
  left: 20px;
}
.stea-hero-slider__next {
  right: 20px;
}

/* About company */
.stea-about-company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.stea-about-company__media img {
  display: block;
  width: 100%;
}

.stea-section-eyebrow {
  margin-bottom: 12px;
  color: var(--stea-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stea-about-company h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 58px);
}

.stea-about-company__experience {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.stea-about-company__experience strong {
  color: var(--stea-accent);
  font-size: 52px;
  line-height: 1;
}

.stea-about-company__experience span {
  max-width: 110px;
  font-weight: 700;
}

.stea-about-company__signature {
  margin: 18px 0 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--stea-accent);
}

/* Counter grid */
.stea-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stea-counter-box {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 28px;
  background: #fff;
  box-shadow: var(--stea-shadow);
}

.stea-counter-box__icon {
  grid-row: 1 / span 2;
  color: var(--stea-accent);
  font-size: 34px;
}

.stea-counter-box__number {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stea-counter-box__label {
  font-size: 14px;
}

/* Team */
.stea-team-grid {
  display: grid;
  gap: 28px;
}

.stea-team-card {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--stea-shadow);
  text-align: center;
}

.stea-team-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #eee;
}

.stea-team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.stea-team-card:hover img {
  transform: scale(1.05);
}

.stea-team-card__socials {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.stea-team-card:hover .stea-team-card__socials {
  opacity: 1;
  transform: translateY(0);
}

.stea-team-card__socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--stea-accent);
  text-decoration: none;
}

.stea-team-card__body {
  padding: 22px;
}

.stea-team-card__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.stea-team-card__body p {
  margin: 0;
  color: var(--stea-accent);
  font-weight: 700;
}

/* Testimonials */
.stea-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.stea-testimonial-card {
  position: relative;
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.stea-testimonial-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.stea-testimonial-card__head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.stea-testimonial-card h3 {
  margin: 0 0 4px;
}

.stea-testimonial-card span {
  color: var(--stea-accent);
  font-weight: 700;
}

.stea-testimonial-card__quote {
  position: absolute;
  right: 18px;
  bottom: -16px;
  color: rgba(0, 0, 0, 0.05);
  font-size: 110px;
  font-weight: 900;
}

/* FAQ */
.stea-faq {
  display: grid;
  gap: 12px;
}

.stea-faq__item {
  background: #f5f5f5;
}

.stea-faq__question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.stea-faq__answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--stea-muted);
}

.stea-faq__item.is-open .stea-faq__answer {
  display: block;
}

.stea-faq__item.is-open .stea-faq__symbol {
  transform: rotate(45deg);
}

/* Video CTA */
.stea-video-cta {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.stea-video-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 35, 0.78);
}

.stea-video-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  width: min(900px, calc(100% - 40px));
  margin: auto;
}

.stea-video-cta__play {
  display: grid;
  flex: 0 0 76px;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.stea-video-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
}

/* Logos */
.stea-logo-carousel {
  overflow: hidden;
}

.stea-logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 70px;
  min-width: max-content;
}

.stea-logo-carousel__item {
  display: block;
  width: 170px;
  opacity: 0.35;
  filter: grayscale(1);
  transition: 0.25s ease;
}

.stea-logo-carousel__item:hover {
  opacity: 1;
  filter: none;
}

.stea-logo-carousel__item img {
  display: block;
  max-width: 100%;
  max-height: 80px;
  margin: auto;
}

/* Contact */
.stea-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stea-contact-info-card {
  display: flex;
  gap: 18px;
  padding: 30px;
  background: #fff;
  box-shadow: var(--stea-shadow);
}

.stea-contact-info-card__icon {
  color: var(--stea-accent);
  font-size: 28px;
}

.stea-contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.stea-contact-info-card p {
  margin: 3px 0;
  color: var(--stea-muted);
}

.stea-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 35px;
  align-items: stretch;
}

.stea-contact-form-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stea-contact-form-layout__form {
  padding: 10px 0;
}

.stea-contact-form-layout input,
.stea-contact-form-layout textarea,
.stea-contact-form-layout select {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px;
  border: 0;
  background: #f4f5f7;
}

.stea-map-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Newsletter */
.stea-newsletter {
  padding: 80px 20px;
  background: #f5f6f8;
  text-align: center;
}

.stea-newsletter h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
}

.stea-newsletter__form {
  display: flex;
  width: min(620px, 100%);
  margin: 32px auto 0;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
}

.stea-newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  border: 0;
  outline: 0;
}

.stea-newsletter__form button {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--stea-accent);
  cursor: pointer;
}

/* Back to top */
.stea-back-to-top {
  position: fixed;
  z-index: 999;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #24262d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
  cursor: pointer;
}

.stea-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .stea-about-company,
  .stea-contact-form-layout {
    grid-template-columns: 1fr;
  }

  .stea-counter-grid,
  .stea-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stea-team-grid,
  .stea-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .stea-hero-slider {
    min-height: 560px;
  }

  .stea-counter-grid,
  .stea-contact-info-grid,
  .stea-team-grid,
  .stea-testimonials {
    grid-template-columns: 1fr !important;
  }

  .stea-video-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   DYNAMIC LAYOUT + CAROUSEL FIXES
   These rules deliberately avoid global `ul, li` resets because those can
   damage menus and other Elementor widgets outside this component.
   ========================================================================== */

.stea-cards {
	--stea-gap: 30px;
}

.stea-view-grid {
	display: grid;
	column-gap: var(--stea-gap);
}

.stea-view-list {
	display: flex;
	flex-direction: column;
	gap: var(--stea-gap);
}

.stea-view-list .main-service-one-sec-single,
.stea-view-list .blog-one-single {
	grid-template-columns: minmax(220px, var(--stea-list-media-width, 36%)) 1fr;
}

/*
 * The outer article is a data/filter shell. Visual background, padding,
 * radius and shadow belong to the inner skin container. Elementor selectors
 * in PHP now target these same elements.
 */
.stea-feature-card {
	min-width: 0;
	background: transparent;
	border: 0;
	overflow: visible;
}

/* Carousel root. */
.stea-view-slider {
	--stea-slides-per-view: 3;
	--stea-gap: 30px;
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
}

.stea-slider-viewport {
	width: 100%;
	overflow: hidden;
}

.stea-show-hidden-slide .stea-slider-viewport {
	overflow: visible;
	clip-path: inset(-100vw -35px -100vw 0);
}

.stea-slider-track {
	display: flex;
	align-items: stretch;
	gap: var(--stea-gap);
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-inline: contain;
}

.stea-slider-track::-webkit-scrollbar {
	display: none;
}

.stea-slider-track > .stea-feature-card {
	flex: 0 0 calc(
		(100% - (var(--stea-slides-per-view) - 1) * var(--stea-gap))
		/ var(--stea-slides-per-view)
	);
	width: calc(
		(100% - (var(--stea-slides-per-view) - 1) * var(--stea-gap))
		/ var(--stea-slides-per-view)
	);
	scroll-snap-align: start;
}

.stea-center-slides .stea-slider-track > .stea-feature-card {
	scroll-snap-align: center;
}

.stea-grab-cursor .stea-slider-track {
	cursor: grab;
}

.stea-grab-cursor .stea-slider-track.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
	user-select: none;
}

/* Carousel arrows. */
.stea-slider-prev,
.stea-slider-next {
	position: absolute;
	z-index: 15;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: #222;
	transform: translateY(-50%);
	cursor: pointer;
	transition: opacity .25s ease, background-color .25s ease, color .25s ease;
}

.stea-slider-prev svg,
.stea-slider-next svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.stea-slider-prev[disabled],
.stea-slider-next[disabled] {
	opacity: .35;
	cursor: not-allowed;
}

.stea-arrows-center .stea-slider-prev {
	left: 8px;
}

.stea-arrows-center .stea-slider-next {
	right: 8px;
}

.stea-arrows-top-right {
	padding-top: 65px;
}

.stea-arrows-top-right .stea-slider-prev,
.stea-arrows-top-right .stea-slider-next {
	top: 0;
	transform: none;
}

.stea-arrows-top-right .stea-slider-prev {
	right: 58px;
	left: auto;
}

.stea-arrows-top-right .stea-slider-next {
	right: 8px;
}

.stea-arrows-bottom-center {
	padding-bottom: 70px;
}

.stea-arrows-bottom-center .stea-slider-prev,
.stea-arrows-bottom-center .stea-slider-next {
	top: auto;
	bottom: 0;
	transform: none;
}

.stea-arrows-bottom-center .stea-slider-prev {
	left: calc(50% - 52px);
}

.stea-arrows-bottom-center .stea-slider-next {
	right: calc(50% - 52px);
}

/* Dots and scrollbar. */
.stea-slider-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.stea-slider-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: width .25s ease, background-color .25s ease;
}

.stea-slider-dot.is-active {
	width: 28px;
	border-radius: 99px;
	background: var(--thm-primary);
}

.stea-slider-scrollbar {
	position: relative;
	height: 4px;
	margin-top: 20px;
	overflow: hidden;
	border-radius: 99px;
	background: rgba(0,0,0,.12);
}

.stea-slider-scrollbar > span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--thm-primary);
	transition: width .2s ease, transform .2s ease;
}

/* Filter control spacing is handled with `gap`; remove old margins. */
.stea-filter-bar .filter-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.stea-filter-bar .filter-tabs li {
	margin: 0;
}

/* Keep styles scoped to this widget; do not reset every list on the website. */
.stea-filter-bar ul,
.blog-classic-meta {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Dynamic icon controls target the shared icon class in all skins. */
.stea-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.stea-feature-icon i,
.stea-feature-icon svg {
	color: inherit;
	fill: currentColor;
}

/* Responsive carousel variables generated by Elementor override these defaults. */
@media (max-width: 1024px) {
	.stea-view-slider {
		--stea-slides-per-view: 2;
	}
}

@media (max-width: 767px) {
	.stea-view-slider {
		--stea-slides-per-view: 1;
	}

	.stea-hide-mobile-arrows .stea-slider-prev,
	.stea-hide-mobile-arrows .stea-slider-next {
		display: none;
	}

	.stea-show-hidden-slide .stea-slider-viewport {
		overflow: hidden;
		clip-path: none;
	}
}


/* Gap defaults. Elementor responsive selectors override these values directly. */
.stea-view-grid {
	column-gap: var(--stea-gap, 30px);
	row-gap: 30px;
}

.stea-view-list {
	gap: var(--stea-gap, 30px);
}

.stea-view-slider {
	--stea-gap: 30px;
}

.stea-slider-track {
	gap: var(--stea-gap, 30px);
}

/* Space between filter controls and Grid/List content. */
.stea-filter-bar {
	margin-bottom: 25px;
}

/* Prevent card-specific theme margins from cancelling Elementor grid gaps. */
.stea-view-grid .main-service-one-sec-single,
.stea-view-grid .blog-one-single,
.stea-view-grid .features-one-sec-single,
.stea-view-grid .features-two-sec-single,
.stea-view-grid .portfolio-one-single {
	margin-bottom: 0;
}