.lc-wrapper {
  display: flex;
  gap: 80px 30px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  .large-card {
    flex-basis: calc( 50% - 15px );
    height: inherit !important;
    display: flex;
    flex-direction: column;
    .content {
      height: inherit !important;
      p:last-child {
        margin-bottom: 0;
      }
      margin-bottom: 30px;
    }
    img {
      margin: 0;
      margin-bottom: 25px;
      width: 100%;
      object-fit: cover;
    }
    .button-wrapper {
      margin-top: auto;
    }
    a.button {
      background: #313E48;
      border-color: #313E48;
      color: #fff;
      text-transform: uppercase;
    }
  }
  &.third {
      .large-card {
        flex-basis: calc( 33.3% - 20px );
      }
    }
  }
}

@media (max-width: 993px) {
  .lc-wrapper {
    gap: 45px;
    .large-card {
      flex-basis: 100%;
      a.button {
          font-size: 16px;
          padding: 15px 35px;
      }
    }
  }
}

.lc-wrapper .large-card {
    .image-wrapper {
        margin-bottom: 25px;
        overflow: hidden;
        img {
            margin-bottom: 0;
            transition: all 333ms ease;
            display: block;
        }
        &:hover {
            img {
                transform: scale(1.1);
            }
        }
    }
}