.industry-showcase {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #203449;
  color: #fff;
  --theme_color: var(--themeColor1, #1a73e8);
  --theme_color_soft: color-mix(in srgb, var(--theme_color) 32%, transparent);
}

.industry-showcase * {
  box-sizing: border-box;
}

.industry-showcase__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--custom-content-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-top: var(--padding_tb);
  padding-bottom: var(--padding_tb);
  padding-left: var(--padding_lr);
  padding-right: var(--padding_lr);
}

.industry-showcase__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
}

.industry-showcase__layout--media-only {
  grid-template-columns: 1fr;
}

.industry-showcase__intro {
  position: relative;
  min-width: 0;
  padding-right: 40px;
}

.industry-showcase__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 31px;
}

.industry-showcase__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--theme_color);
  flex-shrink: 0;
}

.industry-showcase__eyebrow,
.industry-showcase__view-all,
.industry-showcase__category {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.industry-showcase__eyebrow {
  color: #fff;
}

.industry-showcase__view-all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .3s;
}

.industry-showcase__view-all .yiyingbaoicon {
  font-size: 14px;
  line-height: 1;
  transition: transform .3s;
}

.industry-showcase__view-all:hover,
.industry-showcase__view-all:focus-visible {
  color: var(--theme_color);
}

.industry-showcase__view-all:hover .yiyingbaoicon,
.industry-showcase__view-all:focus-visible .yiyingbaoicon {
  transform: translateX(3px);
}

.industry-showcase__title {
  max-width: 280px;
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.industry-showcase__description {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 15.2px;
  line-height: 1.7;
}

.industry-showcase__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 12px;
}

.industry-showcase.is-static .industry-showcase__controls {
  display: none;
}

.industry-showcase__arrow {
  display: flex;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}

.industry-showcase__arrow svg {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform .3s;
}

.industry-showcase__arrow:hover,
.industry-showcase__arrow:focus-visible {
  background: var(--theme_color);
  color: #fff;
  outline: none;
}

.industry-showcase__arrow:focus-visible {
  box-shadow: 0 0 0 3px var(--theme_color_soft);
}

.industry-showcase__arrow--prev:hover svg,
.industry-showcase__arrow--prev:focus-visible svg {
  transform: translateX(-3px);
}

.industry-showcase__arrow--next:hover svg,
.industry-showcase__arrow--next:focus-visible svg {
  transform: translateX(3px);
}

.industry-showcase__viewport {
  min-width: 0;
  overflow: hidden;
}

.industry-showcase__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.industry-showcase__card {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .15);
  transition: border-color .3s;
}

.industry-showcase__card-head {
  height: 120px;
}

.industry-showcase__category {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .65);
  transition: color .3s;
}

.industry-showcase__card:hover .industry-showcase__category,
.industry-showcase__card:focus-within .industry-showcase__category {
  color: var(--theme_color);
}

.industry-showcase__card-title {
  margin: 0;
  padding-right: 16px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.industry-showcase__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
}

.industry-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, 1, .5, 1);
}

.industry-showcase__card:hover,
.industry-showcase__card:focus-within {
  border-left-color: var(--theme_color);
}

.industry-showcase__card:hover .industry-showcase__card-title,
.industry-showcase__card:focus-within .industry-showcase__card-title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.industry-showcase__card:hover img,
.industry-showcase__card:focus-within img {
  transform: scale(1.08);
}

.rtlAr .industry-showcase__intro {
  padding-right: 0;
  padding-left: 40px;
}

.rtlAr .industry-showcase__controls {
  right: 0;
  left: auto;
}

.rtlAr .industry-showcase__card {
  padding-right: 28px;
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-left: 0;
}

.rtlAr .industry-showcase__card-title {
  padding-right: 0;
  padding-left: 16px;
}

.rtlAr .industry-showcase__card:hover,
.rtlAr .industry-showcase__card:focus-within {
  border-right-color: var(--theme_color);
}

.rtlAr .industry-showcase__view-all {
  margin-left: 0;
  margin-right: auto;
}

.rtlAr .industry-showcase__view-all:hover .yiyingbaoicon,
.rtlAr .industry-showcase__view-all:focus-visible .yiyingbaoicon {
  transform: translateX(-3px);
}

.rtlAr .industry-showcase__arrow--next:hover svg,
.rtlAr .industry-showcase__arrow--next:focus-visible svg {
  transform: translateX(-3px);
}

.rtlAr .industry-showcase__arrow--prev:hover svg,
.rtlAr .industry-showcase__arrow--prev:focus-visible svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .industry-showcase__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industry-showcase__intro {
    min-height: 209px;
    padding-right: 0;
  }

  .rtlAr .industry-showcase__intro {
    padding-left: 0;
  }

  .industry-showcase__title {
    max-width: 100%;
  }

  .industry-showcase__description {
    max-width: 640px;
  }

  .industry-showcase__controls {
    display: none;
  }

  .industry-showcase__track {
    gap: 24px;
  }

  .industry-showcase__card {
    flex-basis: calc((100% - 24px) / 2);
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 0;
  }

  .rtlAr .industry-showcase__card {
    padding: 24px 0 0;
    border-right: 0;
  }

  .industry-showcase__card:hover,
  .industry-showcase__card:focus-within,
  .rtlAr .industry-showcase__card:hover,
  .rtlAr .industry-showcase__card:focus-within {
    border-top-color: var(--theme_color);
  }

  .industry-showcase__card-head {
    height: 110px;
  }
}

@media (max-width: 767px) {
  .industry-showcase__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 640px) {
  .industry-showcase__eyebrow-row {
    margin-bottom: 24px;
  }

  .industry-showcase__view-all {
    font-size: 12px;
  }

  .industry-showcase__title {
    font-size: 29px;
  }

  .industry-showcase__intro {
    min-height: 0;
  }

  .industry-showcase__track {
    gap: 18px;
  }

  .industry-showcase__card {
    flex-basis: 100%;
  }

  .industry-showcase__card-head {
    height: auto;
    min-height: 110px;
  }

  .industry-showcase__card-title {
    font-size: 22px;
  }
}

.industry-showcase__pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
}

.industry-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.industry-showcase__dot.is-active {
  background: var(--theme_color);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .industry-showcase__pagination {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-showcase * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
