@media (max-width: 767px) {
  #fetch-ajax {
    .show-ajax {
      min-height: 123px;
    }
  }
  .list-title-counter {
    overflow: scroll;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    .entry {
      margin-bottom: 0.5rem;
      border-bottom: 1px solid #EBF0F5;
      width: 220px;
      position: relative;
      margin-left: 10px;
    }
    .entry:nth-child(1) {
      grid-row: 1;
      grid-column: 1;
    }

    .entry:nth-child(2) {
      grid-row: 2;
      grid-column: 1;
    }

    .entry:nth-child(3) {
      grid-row: 1;
      grid-column: 2;
    }

    .entry:nth-child(4) {
      grid-row: 2;
      grid-column: 2;
    }

    .entry:nth-child(5) {
      grid-row: 1;
      grid-column: 3;
    }

    .entry:nth-child(6) {
      grid-row: 2;
      grid-column: 3;
    }

    .entry:nth-child(7) {
      grid-row: 1;
      grid-column: 4;
    }

    .entry:nth-child(8) {
      grid-row: 2;
      grid-column: 4;
    }

    .entry:nth-child(9) {
      grid-row: 1;
      grid-column: 5;
    }

    .entry:nth-child(10) {
      grid-row: 2;
      grid-column: 5;
    }

    .entry:nth-child(11) {
      grid-row: 1;
      grid-column: 6;
    }

    .entry:nth-child(12) {
      grid-row: 2;
      grid-column: 6;
    }
  }
  .list-title-counter::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  .list-title-counter {
    list-style: none;
    padding: 0;
    margin: 0;
    .entry:hover a {
      color: #185adb;
    }
    .entry:not(:last-child) {
      border-bottom: 1px solid #EBF0F5;
    }
  }
}

.list-title-counter {
  counter-reset: list-counter;
  .entry {
    list-style-type: none;
    margin-bottom: 0.75rem;
    position: relative;
    margin-left: 10px;
  }
  .entry-title {
    padding-bottom: 0.5rem;
  }
  .entry::before {
    counter-increment: list-counter;
    content: counter(list-counter) !important;
    position: absolute;
    top: 7px;
    width: 25px;
    height: 25px;
    display: flex;
    font-size: 13px;
    padding: var(--Spaces-S2-4, 3px) 0px 1px 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--Radius-R3-6, 6px);
    border: 1px solid var(--Border-Neutral-D, #d5dde8);
    background: var(--BG-Neutral-B, #f1f5f9);
    /* Body/B3 */
    font-family: var(--Typography-Font-family, "EstedadVF");
    font-size: var(--Typography-Font-Size-F4-14, 14px);
    font-style: normal;
    font-variation-settings: "wght" 500;
    font-weight: 400;
    line-height: var(--Typography-LineHeight-L3-20, 20px); /* 142.857% */
  }
  a {
    max-width: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 30px;
    font-size: 13px;
    margin-right: 36px;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: var(--text-icon-fg-neutral-b, #1e293b ) !important;
    /* Body/B2 */
    font-family: var(--Typography-Font-family, "EstedadVF");
    font-size: var(--Typography-Font-Size-F5-16, 13px);
    font-variation-settings: "wght" 500;
    font-style: normal;
    font-weight: 400;
  }
}
