/* Welco GM homepage V2 Ã¢â‚¬â€ equal icon grid for industries served */
.wgm-v2-industries {
  position: relative;
  padding: 92px 0 98px;
  overflow: hidden;
  background: var(--wgm-theme-navy, #12364f);
  border-bottom: 4px solid var(--wgm-theme-accent, #ffc815);
}

.wgm-v2-industries::before {
  position: absolute;
  top: 30px;
  right: -12px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(76px, 11vw, 180px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
  content: "CONSULTATION";
  pointer-events: none;
}

.wgm-v2-industries__container {
  position: relative;
  z-index: 1;
}

.wgm-v2-industries__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  margin-bottom: 42px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 56px;
}

.wgm-v2-industries__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--wgm-theme-accent, #ffc815);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wgm-v2-industries__heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wgm-v2-industries__header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.wgm-v2-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wgm-v2-industries__card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.wgm-v2-industries__card:hover {
  border-color: var(--wgm-theme-accent, #ffc815);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.wgm-v2-industries__card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.wgm-v2-industries__body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  height: 100%;
  padding: 30px 26px 25px;
  border-top: 4px solid var(--wgm-theme-accent, #ffc815);
  border-radius: 9px;
}

.wgm-v2-industries__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 27px;
  color: var(--wgm-theme-navy, #12364f);
  font-size: 21px;
  background: var(--wgm-theme-accent, #ffc815);
  border-radius: 50%;
  transition: color 200ms ease, background-color 200ms ease;
}

.wgm-v2-industries__card:hover .wgm-v2-industries__icon {
  color: #ffffff;
  background: var(--wgm-theme-navy, #12364f);
}

.wgm-v2-industries__number {
  position: absolute;
  top: 32px;
  right: 26px;
  color: #9aabb7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wgm-v2-industries__body h3 {
  margin: 0 0 12px;
  color: var(--wgm-theme-navy, #12364f);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.wgm-v2-industries__body p {
  margin: 0 0 24px;
  color: #617485;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.wgm-v2-industries__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--wgm-theme-navy, #12364f);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  gap: 10px;
}

.wgm-v2-industries__link span {
  color: var(--wgm-theme-navy, #12364f);
  font-size: 18px;
  transition: transform 200ms ease;
}

.wgm-v2-industries__card:hover .wgm-v2-industries__link span {
  transform: translateX(5px);
}

@media (max-width: 1199px) {
  .wgm-v2-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .wgm-v2-industries__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }
}

@media (max-width: 575px) {
  .wgm-v2-industries {
    padding: 62px 0 68px;
  }

  .wgm-v2-industries__header {
    margin-bottom: 28px;
  }

  .wgm-v2-industries__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wgm-v2-industries__body {
    min-height: 285px;
    padding: 27px 24px 23px;
  }

  .wgm-v2-industries__number {
    top: 29px;
    right: 24px;
  }
}
