    .card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
      padding: 32px;
      display: flex;
      flex-direction: row;
      gap: 32px;
      
      width: 100%;
      min-height: 500px;
    }

    .card-left {      
      display: flex;
      flex-direction: column;
      justify-content: start;
      width: 50%;
    }

    .card-title {
      color: #22223B;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 4px;
     
      @media (max-width: 1280px) {
        font-size: 20px;
      }

      @media (max-width: 768px) {
        font-size: 16px;
      }
      
      @media (max-width: 480px) {
      }
    }


    .card-subtitle {
      color: #6B7A90;
      font-size: 14px;
      margin-bottom: 16px;
      line-height: 1.4;
      border-bottom: 1px solid #EAECEF;
      padding-bottom: 10px;
           
      @media (max-width: 1280px) {
      }

      @media (max-width: 768px) {
      }
      
      @media (max-width: 480px) {
        font-size: 12px;
      }
    }

    .card-label {
      color: #6B7280;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .card-desc {
      color: #374151;
      margin-bottom: 8px;
      font-size: 18px;
      line-height: 1.6;

      @media (max-width: 1280px) {
        font-size: 16px;
      }

      @media (max-width: 768px) {
        font-size: 16px;
      }
      
      @media (max-width: 480px) {
        font-size: 14px;
      }
    }

    .card-link {
      color: #2B5AAD;
      text-decoration: none;
      font-weight: 500;
      transition: text-decoration 0.2s;
      width: fit-content;
    }

    .card-link:hover {
      text-decoration: underline;
    }

    .card-right {
      
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: start;
      position: relative;
      min-width: 320px;
      width: 50%;
    }

    .card-img {
      border-radius: 16px;
      object-fit: cover;
      
      /* max-width: 600px;
      max-height: 400px; */
      /* box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10); */

      @media (max-width: 780px){
          /* max-width: 400px;
          max-height: 300px; */
      }

      @media (min-width: 1280px) and (max-width: 1900px){
          /* max-width: 400px;
          max-height: 300px; */
      }
    }
    .card-nav {
      position: absolute;
      bottom: 16px;
      right: 16px;
      display: flex;
      gap: 8px;
      z-index: 11;
    }
    .nav-btn {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      padding: 0;
    }
    .nav-btn.active {
      background: #2B5AAD;
    }
    .nav-btn.active svg {
      color: #fff;
    }
    .nav-btn {
      background: #e5e7eb;
    }
    .nav-btn:focus,
    .nav-btn:active,
    .nav-btn:hover
     {
      background: #1e4182;
    }

    .nav-btn:active svg, 
    .nav-btn:focus svg, 
    .nav-btn:hover svg
    {
      color: white;
    }

        .nav-btn svg {
      width: 20px;
      height: 20px;
      color: #2B5AAD;
        }

    @media (max-width: 900px) {
      .card {
        height: auto;
        /* max-width: 360px; */
      }

      .card-img {
        /* max-width: 100%; */
        /* height: 220px; */
      }
      .card-right {
        min-width: 0;
      }
    }
    
    @media (max-width: 600px) {
      .card {
        padding: 16px;
        gap: 16px;
      }
      .card-img {
        /* height: 160px; */
      }
    }

    .card {
      padding: 40px 32px;

      @media (max-width: 600px) {
        padding: 40px 16px;
      }
    }

  .slick-slide {
    margin-right: 32px;    
  }
  
  .swiper-slide {
    height: auto;
  }

  .card-desc  {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

.card-desc.open{
    -webkit-line-clamp: unset;
}

.swiper-pagination {
    margin-bottom: 1rem; 
  position: absolute; 
  bottom: 1rem; 
  left: 1rem !important; 
  z-index: 10; 
  width: fit-content; 
}

@media (max-width: 480px) {
  .card-img {
    /* max-width: 300px; */
  }
}

@media (max-width: 1280px) {  
  .card-left,
  .card-right {
    width: 100%;
  }
  .card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {  
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 768px) {    
  .hidden-desktop {
    display: none;
  }
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.text-center {
  text-align: center; 
}

.card-link.text-center {
    display: block;
    margin: 0 auto;
}