.feature__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}

.feature__item {
  display: flex;
  flex-direction: column;
  padding: 50px 33px;
  background-color: #f6f6f6;
}

.feature__title {
  display: flex;
  flex-direction: column;
  height: auto;
  margin-bottom: 30px;
  font-size: 24px;
  text-transform: none;
}

.feature__title::after {
  display: block;
  content: '';
  width: 100%;
  max-width: 323px;
  margin-top: auto;
  height: 2px;
  background-color: #c20016;
}

.feature__text > * {
  margin-bottom: 0;
}

.feature__text > * + * {
  margin-top: 1em;
}

.feature__text a {
  color: inherit;
  border: 0;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .feature__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature__title {
    height: 100px;
  }
}

@media (min-width: 1440px) {
  .feature__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .feature__title {
    font-size: 26px;
  }
}
