:root {
  --new-black: #0a0a0a; 
  --new-black-rgb:  10, 10, 10; 
}

#research-hub {
  padding: 0 0 200px;
  background: white;
}

.container-1200 {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

#research-hub .heading-wrapper {
  padding-bottom: 50px;
  padding-top: 200px;
  background: white;
  z-index: 90;
  position: relative;
}
#sub-navigation .sub-nav .tags .tag-item {
  font-size: 14px;
  line-height: 130%; 
  letter-spacing: -0.02em;
}
#research-hub .heading-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#research-hub .heading-wrapper .latest-heading {
  color: var(--new-black);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%; 
  margin: 0;
  letter-spacing: -0.01em;
  opacity: .5;
}
#research-hub .all-62 {
  color: var(--new-black);
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

#research-hub .filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

}

#research-hub .tags {
  display: flex;
  align-items: center;
  gap: 24px;

}

#research-hub .view-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 65px;
  color: var(--new-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
#research-hub .view-more-wrapper .view-more{
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: opacity .3s ease;
}
#research-hub .view-more-wrapper .view-more::after{
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(https://7795250.fs1.hubspotusercontent-na1.net/hubfs/7795250/arrow-down-icon.svg);
  width: 16px;
  height: 16px;
  content: "";
  display: block;
}
#research-hub .view-more-wrapper .view-more.disabled{
  pointer-events: none;
  opacity: .3;
  cursor: default;
}

#research-hub .filters-wrapper .right-inputs {
  display: flex;
  align-items: center;
  gap: 26px;
}

#research-hub .filters-wrapper .right-inputs .ordering {
  display: flex;
  align-items: center;
  gap: 20px;
}

#research-hub .filters-wrapper .right-inputs .view-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

#research-hub .filters-wrapper .right-inputs .view-icons img {
  margin: 0;
  display: block;
  opacity: .2;
  transition: opacity .2s ease;
}

#research-hub .filters-wrapper .right-inputs .view-icons .active img {
  opacity: 1;
}

#research-hub .filters-wrapper .right-inputs .ordering .filters,
#research-hub .filters-wrapper .right-inputs .ordering .sort {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--new-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

#research-hub .filters-wrapper .right-inputs .ordering .sort {
  position: relative;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background .2s ease;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort:hover {
  background: #F2F2F2;
}

#research-hub .filters-wrapper .right-inputs .ordering .sort::after {
  display: block;
  height: 10px;
  content: "";
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items {
  background: #fff;
  border: 1px solid hsla(0, 0%, 4%, .08);
  border-radius: 12px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .02), 0 4px 8px -4px rgba(0, 0, 0, .04), 0 16px 24px -8px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity .2s ease;
  z-index: 10;
  width: 200px;
  top: 100%;
  transform: translateY(10px);
}
#research-hub .filters-wrapper .right-inputs .ordering .sort:hover .sort-items {
  opacity: 1;
  pointer-events: auto;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items .sort-control {
  color: var(--new-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 8px;
  transition: background-color .2s ease;
  border-radius: 6px;
  user-select: none;
  position: relative;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items .sort-control::after {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background-position: center center;
  background-image: url(https://www.openzeppelin.com/hubfs/check-16.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items .sort-control.mixitup-control-active::after {
  opacity: 1;
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items .sort-control:hover {
  background: rgba(10, 10, 10, 0.10);
}
#research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items .sort-control.mixitup-control-active {
  font-weight: 600;
}

#research-hub .tags .tag-item {
  color: rgba(var(--new-black-rgb), 0.50);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  cursor: pointer;
  letter-spacing: -0.02em;
  transition: color .2s ease;
  user-select: none;
  scroll-margin-top: 100px;
}
#research-hub  .tags .tag-item:hover {
  color: rgba(var(--new-black-rgb), 0.70);
}
#research-hub  .tags a.tag-item {
  text-decoration: none;
}

#research-hub .tags .tag-item.active {
  color: rgba(var(--new-black-rgb), 1);
}

#latest-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px; 
  row-gap: 55px;
  margin-top: 80px;
  margin-bottom: 200px;
}


#research-hub #posts {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 80px;
  position: relative;
  z-index: 1;
  min-height: 1200px;
}
#posts.posts--clamped {
  max-height: 1300px; 
  overflow: hidden;
  contain: layout paint;
}

#research-hub #posts.is-list {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
{##posts .post .featured-image-wrapper img{
  transition: box-shadow 0.3s ease;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0),
    0 4px 8px -4px rgba(0, 0, 0, 0),
    0 16px 24px -8px rgba(0, 0, 0, 0);
}
#posts .post:hover .featured-image-wrapper img  {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .02),
    0 4px 8px -4px rgba(0, 0, 0, .04),
    0 16px 24px -8px rgba(0, 0, 0, .06);
}#}
#research-hub #posts::before {
  display: block;
  content: "";
  background: rebeccapurple;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  opacity: 1;
  background: white;
  transition: opacity .2s ease-in-out 0s;
  pointer-events: none;
}
#research-hub #posts.is-list::before {
  opacity: 0;
  z-index: 2;
  transition: opacity .2s ease-in-out .2s;
}
#research-hub #posts.is-list .post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0; 
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid rgba(255,255,255,0);
  background-color: white;
  border-radius: 0;
  max-height: 130px;
  transition: border-color .35s ease;
  position: relative;
  z-index: 1;
}

#research-hub #posts.is-list .post::before, #research-hub #posts.is-list .post::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--new-black);
  z-index: 2;
  opacity: 0;
  transition: opacity .35s ease;
}
#research-hub #posts.is-list .post::before {
  top: -1px;
}
#research-hub #posts.is-list .post::after {
  bottom: -1px;
}
#research-hub #posts.is-list .post:hover::before {
  opacity: 1;
}
{##research-hub #posts.is-list .post:hover {
  border-top: 1px solid var(--new-black);
}
#research-hub #posts.is-list .post:hover + .post {
  border-top: 1px solid var(--new-black);
}
#research-hub #posts.is-list .post:nth-child(4n) {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: -1px;
}
#research-hub #posts.is-list .post:nth-child(4n):hover {
  border-bottom: 1px solid var(--new-black);
}
#}

#research-hub #posts.is-list .post .featured-image-wrapper {
  display: none;
}
#research-hub .post {
  position: relative;
  will-change: transform, opacity;
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0), inset 0 -1px 0 0 rgba(255,255,255,0); 
  will-change: transform, opacity;
  transition: box-shadow 0s;
}
#research-hub .post a.main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#research-hub .post .featured-image-wrapper img, #research-hub .placeholder {
  display: block;
  /* width: 100%; */
  /* height: 250px; */
  width: 100%;
  height: auto;
  aspect-ratio: 442 / 247;
  border-radius: 16px;
  margin-bottom: 30px;
  object-fit: cover;
}

#research-hub .placeholder {
  background-color: #CECECE;
}

#research-hub .post-title {
  color: var(--new-black);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-wrap: pretty;
}

#research-hub #posts.is-list .post-title {
  max-width: 450px;
  text-wrap: pretty;
  line-height: 150%;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.5s;
  overflow: hidden;
}

#research-hub .post-meta {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: var(--new-black);
  display: flex;
  gap: 46px;
  align-items: center;
}
#research-hub #posts.is-list .post-meta {
  display: contents;
}
#research-hub .meta-content{
  flex-shrink: 0;
}
#research-hub #posts.is-list  .meta-content{
  display: contents;
}
#research-hub #posts.is-list .post-meta .date-separator {
  display: none;
}
#research-hub #posts.is-list .post-meta .category {
  flex: 1;
  max-width: 18%;
}

#research-hub #posts.is-list .post-meta .date {
  flex: 1;
  max-width: 12%;
  text-align: center;
}
#research-hub .post-meta .date {
  color: rgba(var(--new-black-rgb), 0.5);
}

#research-hub .author-wrapper  {
  position: relative;
  display: none;
}
#research-hub #posts.is-list .author-wrapper  {
  display: block;
}
#research-hub .author-wrapper .avatar-wrapper {
  border-radius: 100px;
  border: 1px solid #eaeaea;
  height: 24px;
  width: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#research-hub .author-wrapper .avatar-wrapper img {
  display: block;
  object-fit: cover;
  height: 100%;
}
#research-hub .author-wrapper .avatar-meta {
  position: absolute;
  padding: 12px;
  display: flex;
  gap: 10px;
  width: max-content;
  margin-top: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  background: #FFF;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
#research-hub .author-wrapper:hover .avatar-meta {
  opacity: 1;
}
#research-hub .author-wrapper .avatar-meta p{
  color: var(--new-black);
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0;
}
#research-hub .author-wrapper .avatar-meta p.author-role{
  color: rgba(115, 115, 115, 1);
  font-size: 12px;
  margin-top: 4px; 
}
#research-hub .author-wrapper .avatar-meta img {
  width: 30px;
  height: 30px; 
}
#research-hub .arrow {
  transition: opacity .2s  ease;
  opacity: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
#research-hub #posts.is-list .arrow {
  display:none;
}
#research-hub article:hover .arrow {
  opacity: 1;
}
#research-hub .search-wrapper {
  position: relative;
  display: inline-block;
  z-index: 9;
}
#research-hub .search-wrapper input:focus-visible {
  outline: 2px solid var(--new-black);
}
#research-hub .search-wrapper #results {
  position: absolute;
  border-radius: 8px;
  border: 0.6px solid rgba(var(--new-black-rgb), 0.15);
  background: #FFF;
  padding: 12px;
  z-index: 99;
  min-width: 685px;
  right: 0;
  margin-top: 8px;
  max-height: 400px;
  overflow: auto;
  display: none;
}
#research-hub .search-wrapper #results li {
  list-style: none;
}
#research-hub .search-wrapper #results li a{ 
  padding: 8px 10px;
  color: rgba(var(--new-black-rgb), 0.60);
  font-size: 16px;
  list-style: none;
  line-height: 20px; 
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
#research-hub .search-wrapper #results li a:hover{
  background-color: rgba(var(--new-black-rgb), 0.10);;

}
#research-hub .search-wrapper #results .result-tag {
  overflow: hidden;
  color: var(--new-black);
  text-align: center;
  line-height: 20px; 
  padding: 3px 8px;
  background: #F7F7F7;
  border-radius: 100px;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}

#research-hub .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  pointer-events: none;
}

#research-hub .search-wrapper input {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFF;
  padding: 6px 20px 6px 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--new-black);
}

#research-hub .search-wrapper input::placeholder {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

{# SUBNAVBAR #}
header .container-fluid.content-wrapper.announcement.mt-0 {
  margin-top: 0!important;
}
#sub-navigation .container-nav .iso-wrapper.always-hidden {
  display: none!important;
}

header.is-absolute{
  position: absolute;
}
#sub-navigation {
  position: fixed;
  top: 0;
  opacity: 0;
  z-index: 999;    
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color .3s ease-in-out, opacity .2s ease-in-out;
}
#sub-navigation.is-fixed {
  opacity: 1;
  position: fixed;
  top: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 4px rgba(135, 139, 171, 0.06);
}
#sub-navigation .container-nav{
  max-width: 1490px;
  padding: 18px 30px;
  margin: auto;
}
#sub-navigation .container-nav .sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sub-navigation .flex-col {
  display: flex; 
  align-items: center;
}
.gap-50 {
  gap: 50px;
}
.gap-30 {
  gap: 30px;
}

#sub-navigation .container-nav .sub-nav a.main-link {
  color: rgba(10, 15, 57, 1);
  font-weight: 700;
  font-size: 16px;
  border-color: transparent!important;
  text-decoration: none;
  display: inline-flex;
  gap: 0px;
  align-items: center;
}
#sub-navigation .container-nav .sub-nav .left-links {
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease-in-out;
}

#sub-navigation .container-nav .sub-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
#sub-navigation .container-nav .sub-links a:not(.button-new) {
  position: relative;
  transition: all .3s ease-in-out;
}
#sub-navigation .container-nav .sub-links a:not(.button-new):hover{
  border-color: rgba(10, 15, 57, 1);

}
#sub-navigation .button-wrapper {
  max-width: 0;
  display: flex;
  justify-content: flex-end;
  transition: all .2s ease-in-out;
  pointer-events: none;
}
#sub-navigation .button-wrapper.visible {
  max-width: 140px;
  pointer-events: auto;
}
#sub-navigation .container-nav .sub-links a.button-new {
  padding: 7px 16px;
  font-size: 14px;
  letter-spacing: -0.02em;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
#sub-navigation .container-nav .sub-links .button-wrapper.visible a.button-new {
  opacity: 1;
  transition-delay: 0.2s; 
}

#sub-navigation .container-nav .sub-nav a img{
  position: relative;
  left: 2px;
  top: -1px;
}
#sub-navigation .container-nav .sub-nav a img.iso-logo{
  position: static;
  opacity: 0;
  transition: opacity .2s ease;
  display: block;
  min-width: 32px;
}
#sub-navigation.is-fixed .container-nav .sub-nav a img.iso-logo{
  opacity: 1;
  transition-delay: .2s;
}
#sub-navigation .container-nav .sub-nav a .iso-wrapper{
  max-width: 0;
  transition-delay: .2s;
  transition: all .2s ease;
}
#sub-navigation.is-fixed .container-nav .sub-nav a .iso-wrapper{
  max-width: 32px;
  transition: all .2s ease;
}
#sub-navigation .container-nav .sub-nav .is-active {
  font-weight: 700!important;
}
#sub-navigation .container-nav .sub-nav .sub-links a.op-50 {
  color: rgba(10,15,57,.5);

}
#sub-navigation .container-nav .sub-nav .sub-links a.op-50:hover {
  color: rgba(10,15,57,1);

}

#sub-navigation .container-nav .sub-nav .is-active:hover::before {
  display: none;
}

/* MEDIA QUERYS */
/* MEDIA QUERYS */
@media (max-width: 1150px){
  #sub-navigation {
  }

  #research-hub #posts {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }
  #research-hub .filters-wrapper {
    gap: 30px;
    flex-direction: column-reverse;
  }
  #research-hub .tags {
    gap: 20px;
    row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  #research-hub .filters-wrapper .right-inputs .ordering .sort .sort-items {
    left: 0;
  }

}
@media (max-width: 767px){
  #research-hub {
    padding: 0 0 100px;
  }
  #research-hub #posts {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }
  #research-hub #posts.is-list .post {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 0;
    border-top: 1px solid #eaeaea;
    background-color: white;
    border-radius: 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  #research-hub #posts.is-list .post-title {
    width: 100%;
    text-wrap: pretty;
    line-height: 145%;
    flex: auto;
    margin: 0;
    font-size: 16px;
  }
  #research-hub #posts.is-list .post-meta {
    display: flex;
    flex: auto;
    justify-content: left;
  }
  #research-hub #posts.is-list .post-meta .category {
    flex: none;
    max-width: none;
    margin-right: 5px;
    text-align: left;
  }
  #research-hub #posts.is-list .post-meta .date {
    flex: none;
    max-width: none;
    text-align: center;
  }
  #research-hub .post-title {
    font-size: 18px;
    margin-bottom: 14px;
    text-wrap: pretty;
  }

  #research-hub .post-meta {
    font-size: 14px;
  }
  #research-hub #posts.is-list .post-meta {
    display: flex;
    flex: auto;
    justify-content: left;
  }
  #research-hub #posts.is-list .post-meta .date-separator {
    display: inline;
  }
  #sub-navigation .flex-col {
    display: none;
  }

  #research-hub .filters-wrapper .right-inputs {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }
  #research-hub .search-wrapper {
    width: 100%;
    display: block;
  }
  #research-hub .search-wrapper input {
    width: 100%;
  }
  #research-hub .heading-wrapper {
    padding-top: 180px;
  }
  #sub-navigation .container-nav .sub-links{
    gap: 16px;
    align-items: center; 
  }
  #sub-navigation .container-nav .sub-nav a.no-underline {
    font-size: 12px;
  }
  #sub-navigation .container-nav .sub-nav .left-links {
    opacity: 1!important;
  }
  #research-hub .post .featured-image-wrapper img, #research-hub .placeholder {
    border-radius: 8px;
    margin-bottom: 24px;
  }
  #research-hub .search-wrapper #results {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  #research-hub .result-tags-wrapper {
    display: none;
  }
}
@media (max-width: 575px){
  #sub-navigation .container-nav {
    padding: 16px 20px;
  }
  #sub-navigation .container-nav .sub-nav a {
    font-size: 12px;
  }
  #research-hub .search-wrapper #results li a {
    font-size: 13px;
  }

  #research-hub .tags .tag-item {
    font-size: 12px!important;
  }
}
@media (max-width: 435px){
  #sub-navigation .container-nav .sub-nav a{
    font-size: 12px!important;
  }
}