.keller-card-row {
  width: 100%;
}

.keller-card-row__title {
  text-align: center;
  margin-bottom: 28px;
}

.keller-card-row__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 58px;
  width: 1226px;
  max-width: 100%;
  margin: 0 auto;
}

.keller-card-row .keller-card-row__inner .keller-card-row__card {
  background: #FFF;
  box-shadow: 0 8px 24px 0 rgba(39, 83, 159, 0.25);
  padding: 14px 33px 40px;
  text-decoration: none;
  position: relative;
  text-align: center;
  width: 370px;
}

.keller-card-row__card img {
  width: 100%;
  height: 226px;
  object-fit: contain;
}

.keller-card-row__card__title {
  margin-bottom: 30px;
}

.keller-card-row__card__copy {
  color: #4E4E4E;
}

.keller-card-row__card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  bottom: 0;
  background-color: #98B81F;
  transition: height 0.25s ease-out;
}

a.keller-card-row__card:hover::after {
  height: 40px;
}

@media (max-width: 767px) {
  .keller-card-row__inner {
    gap: 48px;
  }

  .keller-card-row__card {
    width: 260px;
    max-width: 100%;
  }
}
