.wgt-geo-industries {
  --gap-2xl-42: 42px;

  padding-bottom: var(--padding-76);
  margin-bottom: var(--gap-section-120);
  overflow-x: clip;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--background-gray) 80%, transparent) 0%,
    color-mix(in srgb, var(--background-gray) 80%, transparent) 52%,
    color-mix(in srgb, var(--background-white) 80%, transparent) 100%
  );
}

.wgt-geo-industries .home-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl-42);
  align-items: center;
}

.wgt-geo-industries .home-section-head {
  align-items: center;
  width: 100%;
}

.wgt-geo-industries .home-section-text {
  gap: var(--gap-md-12);
  align-items: center;
}

/* Section title: 26px → 36px (375→1920) */
.wgt-geo-industries .geo-industries-title,
.wgt-geo-industries .geo-industries-title :is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0 auto;
  color: var(--text-title);
  font-size: clamp(1.625rem, 1.4733rem + 0.6472vw, 2.25rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  text-align: center;
}

.wgt-geo-industries .geo-industries-description,
.wgt-geo-industries .geo-industries-description p {
  max-width: 678px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  text-align: center;
}

.geo-industries-carousel {
  position: relative;
  width: 100%;
}

.wgt-geo-industries .splide__track {
  overflow: hidden;
}

.geo-industries-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg-24);
  align-items: flex-start;
  height: 100%;
  padding: var(--padding-lg-24);
  overflow: hidden;
  border: 1px solid var(--border-default-purple);
  border-radius: var(--radius-sm);
  background: var(--background-white);
}

.geo-industries-card-image {
  display: block;
  width: 100%;
  max-width: 336px;
}

.geo-industries-card-text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm-8);
  width: 100%;
}

/* Card title: 18px → 24px (375→1920) */
.geo-industries-card-title {
  margin: 0;
  color: var(--text-title);
  font-size: clamp(1.125rem, 1.034rem + 0.3883vw, 1.5rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
}

/* Card description: 14px → 16px (375→1920) */
.geo-industries-card-description,
.geo-industries-card-description p {
  margin: 0;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

.wgt-geo-industries .splide__arrows {
  position: static;
}

.wgt-geo-industries .splide__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  background: var(--background-white);
  border: 1px solid var(--primary-color-05);
  border-radius: var(--radius-button);
  opacity: 1;
  box-shadow: var(--shadow-elevated);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wgt-geo-industries .splide__arrow--prev {
  left: 0;
  transform: translate(calc(-1 * var(--padding-section)), -50%);
}

.wgt-geo-industries .splide__arrow--next {
  right: 0;
  background: var(--primary-color-02);
  border-color: var(--primary-color-02);
  transform: translate(var(--padding-section), -50%);
}

.wgt-geo-industries .splide__arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color-02);
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

.wgt-geo-industries .splide__arrow--prev svg {
  transform: scaleX(-1);
}

.wgt-geo-industries .splide__arrow--next svg {
  fill: var(--text-white);
}

.wgt-geo-industries .splide__arrow:hover,
.wgt-geo-industries .splide__arrow:focus-visible {
  background: var(--primary-color-02);
  border-color: var(--primary-color-02);
  outline: none;
}

.wgt-geo-industries .splide__arrow:hover svg,
.wgt-geo-industries .splide__arrow:focus-visible svg {
  fill: var(--text-white);
}

.wgt-geo-industries .splide__arrow--next:hover,
.wgt-geo-industries .splide__arrow--next:focus-visible {
  background: var(--primary-color-05);
  border-color: var(--primary-color-05);
}

.wgt-geo-industries .splide__arrow:disabled,
.wgt-geo-industries .splide__arrow:disabled:hover,
.wgt-geo-industries .splide__arrow:disabled:focus-visible {
  background: var(--background-white);
  border-color: var(--primary-color-05);
  box-shadow: none;
  cursor: default;
}

.wgt-geo-industries .splide__arrow:disabled svg,
.wgt-geo-industries .splide__arrow:disabled:hover svg,
.wgt-geo-industries .splide__arrow:disabled:focus-visible svg {
  fill: var(--primary-color-05);
}

@media (max-width: 768px) {
  .wgt-geo-industries {
    padding: var(--padding-md-15);
    padding-bottom: var(--padding-xl-32);
    margin-bottom: var(--padding-4xl-80);
  }

  .wgt-geo-industries .home-inner {
    gap: var(--gap-xl-32);
  }

  .wgt-geo-industries .geo-industries-title,
  .wgt-geo-industries .geo-industries-title :is(h1, h2, h3, h4, h5, h6, p) {
    line-height: var(--line-height-display);
  }

  .geo-industries-card {
    gap: var(--padding-lg-20);
    padding: var(--padding-18);
  }

  .geo-industries-card-image {
    max-width: none;
  }

  .geo-industries-card-description,
  .geo-industries-card-description p {
    line-height: var(--line-height-caption);
  }

  .wgt-geo-industries .splide__arrows {
    display: none;
  }
}
