.category .wrapper .rows .post.hide {
  display: none;
}

.category .wrapper {
  padding: 80px var(--out-padding);
  box-sizing: border-box;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: grid;
}
 
/** Filters **/
.category .wrapper .filters {
  -webkit-box-ordinal-group: -2;
      -ms-flex-order: -3;
          order: -3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  border-bottom: 2px solid #069aa4;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.category .wrapper .filters a {
  color: #069aa4;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.22px;
  padding: 8px 8px 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 4px solid transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.category .wrapper .filters a.active {
  padding-bottom: 8px;
  color: #fff;
  border-bottom: 4px solid #069aa4;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

/** Years **/
.category .wrapper .years {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  white-space: nowrap;
  gap: 10px;
  overflow: auto;
  margin-bottom: 30px;
  padding: 20px 0;
  position: sticky;
  top: 70px;
  background: #0b1b2a;
  z-index: 1;
}
.category .wrapper .years .btn {
  padding: 0 6px;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
  color: #0c9099;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.category .wrapper .years .btn:hover {
  color: #3cc0c9;
}
.category .wrapper .years .btn.active {
  color: #fff;
}

/** Months **/
.category .wrapper .months {
  order: -1;
  margin: -30px auto 30px 0;
  padding: 8px;
  border-radius: 6px;
  border-bottom: 2px solid #65d3ca;
  outline: 0;
  font-size: 14px;
  line-height: 28px; /* 200% */
  color: #000!important;
}

/* Scrollbars */
.category .wrapper .filters::-webkit-scrollbar,
.category .wrapper .years::-webkit-scrollbar {
  height: 3px;
}
.category .wrapper .filters::-webkit-scrollbar-track,
.category .wrapper .years::-webkit-scrollbar-track {
  background: #193855;
}
.category .wrapper .filters::-webkit-scrollbar-thumb,
.category .wrapper .years::-webkit-scrollbar-thumb {
  background: #069aa4;
}
.category .wrapper .filters::-webkit-scrollbar-thumb:hover,
.category .wrapper .years::-webkit-scrollbar-thumb:hover {
  background: #067a84;
}

/** Posts **/
.category .wrapper .rows {
  display: grid;
  gap: 30px 0;
  position: relative;
}

.category .wrapper .rows .post {
  order: 2;
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid #069aa4;
  padding-bottom: 30px;
  height: 100%;
  box-sizing: border-box;
}
.category .wrapper .rows .post .image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0;
  overflow: hidden;
  grid-area: 1 / 1 / 1 / 1;
}
.category .wrapper .rows .post img {
  width: 100%;
  max-width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px 0;
  background: #081622;
}
.category .wrapper .rows .post .title {
  display: flex;
  text-decoration: none;
  box-sizing: border-box;
  grid-area: 1 / 2 / 1 / 2;
  margin-left: 20px;
}
.category .wrapper .rows .post h2 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
}
.category .wrapper .rows .post .info {
  margin-top: 15px;
  display: flex;
  flex-flow: column nowrap;
  grid-area: 2 / 1 / 3 / 3;
}
.category .wrapper .rows .post .date {
  color: #72ede1;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.category .wrapper .rows .post p {
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category .wrapper .rows .post .read-more {
  text-decoration: none;
  color: #72ede1;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category .wrapper .posts-navigation {
  margin-top: 30px;
}
.category .wrapper .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.category .wrapper .nav-links .nav-previous,
.category .wrapper .nav-links .nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 10px;
}
.category .wrapper .nav-links a {
  text-decoration: none;
}

/** Pseudoelements **/
.category .wrapper .rows .post .read-more::before {
  margin: 2px 5px 0 0;
}
.category .wrapper .rows .post .read-more::after {
  margin: 2px 0 0 8px;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.category .wrapper .rows .post .read-more:hover::after {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.category .wrapper .rows .post .read-more::before {
  content: url("/wp-content/themes/tl/assets/icons/publications/article_icon.png");
}
.category .wrapper .rows .post .read-more::after {
  content: url("/wp-content/themes/tl/assets/icons/publications/arrow.png");
}

/** Responsive **/
@media screen and (min-width: 760px) {
  .category .wrapper .filters a {
    font-size: 22px;
  }
  .category .wrapper .filters a.active {
    font-size: 24px;
  }
  .category .wrapper .years {
    top: 100px;
  }

  .category .wrapper .rows .post .image {
    grid-area: 1 / 1 / 3 / 1;
  }
  .category .wrapper .rows .post .title {
    grid-area: 1 / 2 / 1 / 2;
  }
  .category .wrapper .rows .post .info {
    margin-top: 0;
    margin-left: 20px;
    grid-area: 2 / 2 / 3 / 3;
  }
  .category .wrapper .rows .post p {
    -webkit-line-clamp: 2;
  }
}

@media screen and (min-width: 1200px) {
  .category .wrapper .filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: unset;
  }
  .category .wrapper .filters::before,
  .category .wrapper .filters::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #069aa4;
  }
  .category .wrapper .filters::before {
    left: 0px;
  }
  .category .wrapper .filters::after {
    right: 0px;
  }
}