.tlg-hc-heading {
    font-size: clamp(28px, 5vw, 64px);
    margin: 0 0 28px;
  }
  
  .tlg-hc-grid {
    --tlg-cols: 3;
    display: grid;
    gap: clamp(14px, 2vw, 24px);
    grid-template-columns: repeat(var(--tlg-cols), 1fr);
  }
  
  @media (max-width: 1024px) {
    .tlg-hc-grid {
      --tlg-cols: 2 !important;
    }
  }
  
  @media (max-width: 767px) {
    .tlg-hc-grid {
      --tlg-cols: 1 !important;
    }
  }
  
  .tlg-hc-card {
    position: relative;
    display: block;
    border-radius: 0px;
    overflow: hidden;
    min-height: 440px;
    color: #FFFAF0;
    text-decoration: none;
    isolation: isolate;
    --lines: 2;
  }
  
  @media (max-width: 767px) {
    .tlg-hc-card {
      height: 320px;
    }
  }
  
  .tlg-hc-image {
    position: absolute;
    inset: 0;
  }
  
  .tlg-hc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25, .8, .25, 1);
  }
  
  .tlg-hc-card:hover .tlg-hc-image img {
    transform: scale(1.04);
  }
  
  @media (max-width: 767px) {
    .tlg-hc-card:hover .tlg-hc-image img {
      transform: none;
    }
  }
  
  .tlg-hc-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tlg-bg, #193321);
    padding: 22px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .08) inset;
  }

  
  .tlg-hc-num {
    font-family: "DM Serif Display" !important;
    font-size: var(--Typography-Size-Text-XS, 12px);
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  @media (max-width: 767px) {
    .tlg-hc-num {
      font-size: 11px;
      margin-bottom: 10px;
    }
  }
  
  .tlg-hc-title {
    margin: 0 0 8px;
    font-family: "DM Sans" !important;
    font-size: clamp(20px, 2.2vw, 28px) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 112% !important;
    letter-spacing: -1.12px !important;
    color: #fff !important;
  }
  
  @media (max-width: 767px) {
    .tlg-hc-title {
      font-size: 22px !important;
      letter-spacing: -0.88px !important;
      margin-bottom: 6px;
    }
  }
  
  .tlg-hc-desc {
    margin: 0;
    font-family: "DM Sans";
    font-size: var(--Typography-Size-Text-L, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #fff !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s cubic-bezier(.4, 0, .2, 1), -webkit-mask-image .3s ease;
    will-change: max-height;
  }
  
  @media (max-width: 767px) {
    .tlg-hc-desc {
      font-size: 14px;
      line-height: 150%;
      max-height: none;
      overflow: visible;
    }
  }
  
  .tlg-hc-card:hover .tlg-hc-desc {
    max-height: 1000px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  
  @media (max-width: 767px) {
    .tlg-hc-card:hover .tlg-hc-desc {
      max-height: none;
    }
  }