.tbc-industry-module {
  background: ;
  padding-top: px;
  padding-bottom: px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
}

.tbc-industry-inner {
  max-width: px;
  margin: 0 auto;
}

.tbc-industry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.tbc-industry-eyebrow {
  margin: 0;
  color: ;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbc-industry-arrows {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tbc-industry-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(22, 75, 255, 0.16);
  background: ;
  color: ;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.tbc-industry-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.tbc-industry-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.tbc-industry-track-wrap {
  overflow: hidden;
  width: 100%;
}

.tbc-industry-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}

.tbc-industry-track::-webkit-scrollbar {
  display: none;
}

.tbc-industry-card {
  position: relative;
  flex: 0 0 calc((100% - (16px * ( - 1))) / );
  min-width: 128px;
  background: #ffffff;
  border-radius: px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

{% if module.style.cards.card_shadow == "medium" %}
.tbc-industry-card {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}
{% elif module.style.cards.card_shadow == "soft" %}
.tbc-industry-card {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
{% else %}
.tbc-industry-card {
  box-shadow: none;
}
{% endif %}

.tbc-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.13);
}

.tbc-industry-image {
  position: relative;
  height: px;
  background: #e9eef8;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.tbc-industry-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tbc-industry-card:hover .tbc-industry-image > img {
  transform: scale(1.06);
}

.tbc-industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 22, 48, 0.04),
    rgba(8, 22, 48, 0.32)
  );
  pointer-events: none;
}

.tbc-industry-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(22, 75, 255, 0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tbc-industry-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.tbc-industry-title {
  position: relative;
  z-index: 2;
  min-height: 64px;
  padding: 16px 12px;
  background: #ffffff;
  color: ;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .tbc-industry-card {
    flex-basis: calc((100% - 48px) / 4);
  }
}

@media (max-width: 760px) {
  .tbc-industry-module {
    padding: 42px 16px;
  }

  .tbc-industry-header {
    align-items: flex-start;
  }

  .tbc-industry-card {
    flex-basis: 155px;
  }

  .tbc-industry-image {
    height: 112px;
  }

  .tbc-industry-icon {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }
}