.industry-cards-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media only screen and (min-width: 576px) {
  .industry-cards-grid {
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .industry-cards-grid {
    justify-content: flex-start;
  }
}

.industry-cards-heading {
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .industry-cards-heading {
    margin-bottom: 30px;
  }
}

.industry-card {
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  width: 328px;
  max-width: 100%;
}
@media only screen and (min-width: 576px) {
  .industry-card {
    width: 282px;
  }
}
.industry-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 328/180;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
@media only screen and (min-width: 576px) {
  .industry-card__image {
    aspect-ratio: 282/180;
  }
}
.industry-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease-in-out;
}
.industry-card__img--placeholder {
  background: linear-gradient(135deg, #F5F5F5 0%, #D9D9D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card__img--placeholder::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23C1C1C1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3e%3ccircle cx='9' cy='9' r='2'/%3e%3cpath d='m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.industry-card__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  min-height: 70px;
  padding: 11px 38px;
}
@media only screen and (min-width: 576px) {
  .industry-card__content {
    padding: 12px 15px;
    gap: 16px;
    min-height: 80px;
  }
}
.industry-card__title {
  margin: 0;
  transition: all 0.2s ease-in-out;
  font-size: 20px;
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media only screen and (min-width: 576px) {
  .industry-card__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.industry-card__cta {
  flex-shrink: 0;
}
.industry-card__link {
  width: fit-content;
  font-size: 16px;
  border-width: 3px;
  color: #E24A02;
  border-color: #E24A02;
  padding: 2px 7px;
}
.industry-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.industry-card__link:hover {
  border-color: #000000;
}
.industry-card__link:hover::after {
  background-color: #E24A02;
}
.industry-card--linked:hover .industry-card__title {
  color: #E24A02;
  text-decoration-color: #E24A02;
}
.industry-card--linked:hover .btn {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.industry-card:hover .industry-card__img {
  transform: scale(1.074);
}
.industry-card--no-link {
  cursor: default;
}
.industry-card--no-link .industry-card__title {
  text-decoration: none;
}

/*# sourceMappingURL=industry-cards-style.css.map */
