.linkcards {
  padding: 72px 0;

  .title-content {
    margin-bottom: 40px;

    h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 8px;
    }
    p {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 0;
    }
  }

  .cards-content {
    .row {
      row-gap: 16px;

      /* .col-lg-6:first-child {
        padding: 0 8px 0 0;
      }
      .col-lg-6:last-child {
        padding: 0 0 0 8px;
      } */
    }

    .card-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
      background: white;
      padding-bottom: 22px;

      img {
        height: 260px;
        width: 100%;
        object-fit: cover;
      }

      .text-card {
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
        justify-content: space-between;

        .texts-content {
          h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
          }

          p {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 0px;
          }
        }

        .button-content {
          a {
            display: flex;
            gap: 4px;
            align-items: center;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            width: fit-content;
          }
        }
      }
    }
  }
}
