.sep {
  margin: 1rem 0;
  border-bottom: 1px solid #ebebeb;
}

.vc_row ul.resource-filter li,
.vc_row ul.resource-paging li {
  margin-bottom: 0;
}

.resource-paging {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;

    > li {
      display: flex;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      border-radius: 2px;
      border: 1px solid #e6e6e6;
      color: #0d0d0d;

      > button, > a {
        width: 100%;
        height: 100%;
        color: #0d0d0d;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        

        > svg {
          width: 20px;
          height: 20px;
          fill: #0d0d0d;
        }
      }
    }
  }

.resource-filter {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;

  > li {
    display: flex;
    padding: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 2px solid #0e7636;
    background: #fff;   

    &.label {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 1.5rem;
      padding-left: 0;
      border: none;
      border-radius: 0;
      justify-content: start;
    }

    &:has(.is-active) {
      border-radius: 4px;
      background: #0e7636;

      > button {
        color: #fff;
        border: none;
        inset: unset;
        background-color: transparent;
      }
    }

    > button,
    > span {
      color: #0e7636;
      border: none;
      font-family: "Montserrat", sans-serif;
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 400;
      line-height: 100%; /* 14px */
    }

    > span {
      color: #fff;
    }
  }
}

.publications-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.publications-main {
  flex: 1 1 auto;
  min-width: 0;
}

.publication-item h3 {
  margin: 0.2rem 0;
}

.publication-meta {
  display: none;
}

.publication-item a {
  font-family: "Montserrat", sans-serif;
}

.publications-pagination {
  display: block;
  text-align: center;
}

.publication-author p {
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.publications-aside {
  flex: 0 0 340px;
  max-width: 340px;
}

@media (max-width: 900px) {
  .publications-container {
    flex-direction: column;
  }
  .publications-aside {
    max-width: none;
  }
}
