.atlas-resources-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 64px;
    align-items: stretch;
  }
  
  .atlas-resources-list .atlas-resource {
    color: inherit;
    text-decoration: none;
    max-width: calc(33.33% - 21px);
    flex: 30% 1 1;
  }
  
  .atlas-resource-card {
    border-radius: 4px;
    background: var(--White, #FFF);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    padding: 34px 22px;
    color: black;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.2s all ease;
  }

  .atlas-resource-card .atlas-button[class*="--outlined"] {
    color: var(--theme-primary-color);
    font-size: 16px;
    border-radius: 6px;
    width: fit-content;
  }
  .atlas-resource__button-wrapper {
    margin-top: auto;
    padding-top: 25px;
  }
  
  .atlas-resource h3 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    color: black;
  }
  
  .atlas-resource-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .atlas-resource-categories span {
    color: var(--theme-primary-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;12px;
  }
  
  
  .atlas-resource-description {
    font-size: 15px;
    word-break: break-word;
  }
  
  .atlas-resource-search-text {
    display: none;
  }
  
  .atlas-resources-filter-label {
    text-transform: uppercase;
    color: #A3A5A3;
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .atlas-resources-filters {
    display: flex;
  }
  
  .atlas-resources-categories-filter {
    width: 100%;
  }
  
  .atlas-resources-search {
    width: 33.33%;
  }
  
  .atlas-resources-filter-categories label {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--White, #FFF);
    font-size: 18px;
    background-color: transparent;
    cursor: pointer;
    color: white;
    transition: 0.35s background-color ease-in-out;
  }
  
  .atlas-resources-filter-categories label:hover {
    background-color: #DCDCE0;
    border-color: #DCDCE0;
    color: #5f615f;
  }
  
  .atlas-resources-filter-categories :checked+label {
    background:var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    color: white;
  }
  
  .atlas-resources-search__input-wrapper {
      position: relative;
  }
  
  .atlas-resources-search__input-wrapper::after {
      content: '';
      position: absolute;
      background-image: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.79167 13.9583C10.9213 13.9583 13.4583 11.4213 13.4583 8.29167C13.4583 5.16205 10.9213 2.625 7.79167 2.625C4.66205 2.625 2.125 5.16205 2.125 8.29167C2.125 11.4213 4.66205 13.9583 7.79167 13.9583Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.8752 15.3748L11.7939 12.2936' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 100%;
      height: 20px;
      width: 20px;
      right: 12px;
      top: 0px;
  }
  
  .atlas-resources-search input {
    flex: 100% 1 1;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #A3A5A3;
    border-radius: 4px;
    color: black;
    background-color: white;
  }
  
  .atlas-resources-filter-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 17px;
  }
  
  .atlas-resources--no-results {
    display: none;
    padding: 40px 80px 80px 0;
    color: black;
    text-align: left;
  }
  
  .atlas-resources--no-results h3 {
    color: black;
    margin-bottom: 0.75rem;
  }
  
  .atlas-resource:not(.atlas-resource--filter-match),
  .search-active .atlas-resource--filter-match:not(.atlas-resource--search-match) {
    display: none;
  }
  
  @media (min-width: 769px) and (max-width: 999px) {
      .atlas-resources-list .atlas-resource {
          flex: 50% 1 1;
          max-width: calc(50% - 16px);
      }
  }
  
  @media (max-width: 768px) {
    .atlas-resources-filters {
      flex-direction: column;
      gap: 1rem;
    }
  
    .atlas-resources-categories-filter,
    .atlas-resources-search {
      width: 100%;
    }
  
    .atlas-resources-list {
      flex-direction: column;
      gap: 1rem;
    }
  
    .atlas-resources-list .atlas-resource {
      flex: 100% 1 1;
      max-width: 100%;
    }
  }
  
