.landing-page-text-and-image-cards__inner {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.landing-page-text-and-image-cards__title.h1 {
   text-align: center;
   margin-bottom: clamp(26px, 84 * (100vw / 1920), 84px);
}

.landing-page-text-and-image-cards__items {
   display: flex;
   flex-wrap: wrap;
   gap: clamp(16px, 28 * (100vw / 1920), 28px);
   margin-bottom: clamp(26px, 84 * (100vw / 1920), 84px);
   justify-content: center;
}

.landing-page-text-and-image-cards__item {
   flex: 0 1 32%;
   padding: 28px;
   border: 2px solid #d1d1d1;
   color: #000;
}

.landing-page-text-and-image-cards__item * {
   color: inherit;
}

.landing-page-text-and-image-cards__item__picture {
   display: flex;
   flex-direction: column;
   gap: 28px;
   margin-bottom: 28px;
}

.landing-page-text-and-image-cards__item__picture__image img {
   max-height: clamp(50px, 56 * (100vw / 1920), 56px);
}

.landing-page-text-and-image-cards__item__picture__caption {
   font-weight: 500;
   text-transform: uppercase;
}

.landing-page-text-and-image-cards__item__content {
   display: flex;
   flex-direction: column;
}

.landing-page-text-and-image-cards__item__content__title {
   font-weight: 500;
   text-transform: none;
}

.landing-page-text-and-image-cards__item__content__text {
   margin-top: auto;
}

.landing-page-text-and-image-cards__button {
   display: inline-block;
   padding: clamp(17px, 29 * (100vw/1920), 29px);
   background-color: #000;
   color: #fff;
   text-decoration: none;
   text-transform: uppercase;
}

@media (max-width: 600px){
   .landing-page-text-and-image-cards__item {
      flex: 1 0 100%;
   }

   .landing-page-text-and-image-cards__items {
      gap: 28px;
   }
}
