.posts-page .post-title-font {
  font-family: "STIX Two Text", serif;
  color: #2D334D;
}

.posts-page .post-light-blue {
  color: #2D334D;
}

.posts-page .post-list {
  margin-top: 60px;
  margin-bottom: 80px;
}

.posts-page .post-list .post-wrapper {
  display: flex;
  flex-direction: column;
}

.posts-page .post-list .post-detail {
  display: flex;
  margin-bottom: 40px;
}

.posts-page .post-list .post-image img {
  aspect-ratio: 1.77;
  width: 377px;
  border-radius: 5px;
}

.posts-page .post-list .post-content {
  width: 50%;
  margin-left: 24px;
}

.posts-page .post-list .post-content h2 {
  margin-bottom: 12px
}

.posts-page .post-list .post-content .post-caption {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.posts-page .post-list .post-content .post-p1 {
  width: 74%;
}

.posts-page .post-category-filter-menu{
  margin-top: 42px;
}

.posts-page .post-category-filter-menu .menu-wrapper{
  display: flex;
  justify-content: space-between;
  padding-right: 32%;
}

.posts-page .post-category-filter-menu .wrapper-category {
  min-width: 45px;
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-bottom: 40px;
  transition: 0.3s;
  margin-right: 10px;
}

.posts-page .post-category-filter-menu .post-menu-button {
  font-family: "STIX Two Text", sans-serif;
  color: #7F859F;
  transition: 0.3s;
  cursor: pointer;
  padding-top: 5px;
  display: block;
  text-align: center;
}

.posts-page .post-category-filter-menu .post-menu-button.active {
  color: var(--brown);
}

.posts-page .post-category-filter-menu .wrapper-category:hover::after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brown);
  transition: 0.3s;
}

.posts-page .post-category-filter-menu .wrapper-category.active::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brown);
  transition: 0.3s;
}

.posts-page .post-category-filter-menu .post-menu-button:hover {
  color: var(--brown);
  transition: 0.3s;
  font-weight: 700;
}

.posts-page .post-category-filter-menu .post-menu-button.acitve {
  color: var(--brown);
  transition: 0.3s;
  font-weight: 700;
}

.posts-page .post-category-filter-menu .wrapper-category.acitve::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brown);
  transition: 0.3s;
}

.posts-page .post-category-filter-menu .wrapper-category.acitve::after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brown);
  transition: 0.3s;
}

.posts-page .post-showcase .major-image-wrapper{
  position: relative;
}

.posts-page .post-showcase .major-image{
  aspect-ratio: 1.77;
  position: relative;
  border-radius: 5px;
  width: 709px;
}

.posts-page .post-showcase .big-post-main-content{
  z-index: 1;
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%;
}

.posts-page .post-showcase .major-image-wrapper .img-overlay{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 2, 5, 0.3);
  content: "";
  position: absolute;
  top: 0;
  border-radius: 5px;
}

.posts-page .post-showcase .big-post-title{
  font-family: 'STIX Two Text', sans-serif;
  line-height: 1em;
  margin-bottom: 0;
}

.posts-page .post-showcase .big-post-category{
  margin-top: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.posts-page .post-showcase .post-showcase-wrapper{
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}

.posts-page .post-showcase .minor-line{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.posts-page .post-showcase .minor-line .minor-line-title1{
  font-family: 'STIX Two Text', sans-serif;
  border-bottom: 1px solid #E2E4E9;
  padding-bottom: 16px;
}

.posts-page .post-showcase .minor-line .minor-line-title2{
  font-family: 'STIX Two Text', sans-serif;
  border-top: 1px solid #E2E4E9;
  padding-top: 16px;
}

.posts-page .small-post-column{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 24px;
}

.posts-page .small-post-column .post-detail{
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.posts-page .small-post-column .post-image img{
  aspect-ratio: 1.77;
  width: 176px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.posts-page .small-post-column .post-caption{
  text-transform: uppercase;
}

.posts-page .small-post-column .post-content{
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width:1400px) {
  .posts-page .post-showcase .major-image{
    width: 600px;
  }
}

@media (max-width:1200px) {
  .posts-page .post-category-filter-menu .menu-wrapper{
    width: 100%;
  }

  .posts-page .post-showcase .major-image{
    width: 425px;
  }

  .posts-page .post-category-filter-menu .menu-wrapper{
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .posts-page .post-list .post-image img{
    width: 349px;
  }

  .posts-page .small-post-column .post-image img{
    width: 349px;
    border-radius: 5px;
  }

  .posts-page .post-showcase .post-showcase-wrapper{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .posts-page .post-showcase .big-post-image{
    width: 100%;
    margin-bottom: 100px;
  }

  .posts-page .post-list{
    margin-top: 0;
  }

  .posts-page .post-showcase .major-image{
    width: 100%;
  }

  .posts-page .small-post-column{
    margin-left: 0;
  }

  .posts-page .small-post-column .post-detail {
    display: flex;
  }

  .posts-page .small-post-column .post-content {
    width: 50%;
    margin-left: 24px;
    justify-content: flex-start;
  }

  .posts-page .small-post-column .post-content h2 {
    margin-bottom: 12px
  }

  .posts-page .small-post-column .post-content .post-caption {
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .posts-page .small-post-column .post-content .post-p1 {
    width: 74%;
  }
}

@media (max-width: 800px) {
  .posts-page .big-post-image .major-image-wrapper .img-overlay{
    display: none;
  }

  .posts-page .post-showcase-wrapper .big-post-main-content{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
    color: black;
  }

  .posts-page .post-showcase-wrapper .big-post-category{
    color: var(--brown);
    font-weight: 700;
  }

  .posts-page .big-post-image .major-image-wrapper a{
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px){
  .posts-page .post-list{
    margin-bottom: 40px;
  }

  .posts-page .post-list .post-image img{
    width: 100%;
  }
  .posts-page .small-post-column .post-image img{
    width: 100%;
  }
  .posts-page .post-showcase .big-post-image{
    margin-bottom: 50px;
  }
  .posts-page .post-category-filter-menu .menu-wrapper{
    padding-right: 0;
  }
  .posts-page .post-list .post-detail {
    width: 100%;
    justify-content: space-between;
  }
  .posts-page .post-list .post-image {
    width: 45%;
  }
  .posts-page .post-list .post-content {
    width: 50%;
  }
  .posts-page .post-list .post-content h2 {
    margin-bottom: 10px;
  }
  .posts-page .post-list .post-content .post-caption {
    margin-bottom: 10px;
  }
  .posts-page .post-list .post-content .post-p1 {
    width: 98%;
  }
  .posts-page .small-post-column .post-detail {
    width: 100%;
    justify-content: space-between;
  }
  .posts-page .small-post-column .post-image {
    width: 45%;
  }
  .posts-page .small-post-column .post-content {
    width: 50%;
  }
  .posts-page .small-post-column .post-content h2 {
    margin-bottom: 10px;
  }
  .posts-page .small-post-column .post-content .post-caption {
    margin-bottom: 10px;
  }
  .posts-page .small-post-column .post-content .post-p1 {
    width: 98%;
  }

}

@media (max-width: 575px) {
  .posts-page .post-list{
    margin-bottom: 30px;
  }

  .posts-page .post-category-filter-menu .menu-wrapper{
    flex-wrap: wrap;
  }

  .posts-page .post-showcase .big-post-image{
    margin-bottom: 30px;
  }

  .posts-page .post-showcase .post-content{
    margin-left: 0;
  }

  .posts-page .post-list .post-content{
    margin-left: 0;
  }

  .posts-page .small-post-column {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .posts-page .small-post-column .post-detail {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .posts-page .small-post-column .post-image {
    width: 90%;
    margin-bottom: 12px;
  }
  .posts-page .small-post-column .post-content {
    width: 90%;
  }
  .posts-page .small-post-column .post-content .post-p1 {
      width: 99%;
  }

  .posts-page .post-list .post-wrapper {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .posts-page .post-list .post-detail {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .posts-page .post-list .post-image {
    width: 90%;
    margin-bottom: 12px;
  }
  .posts-page .post-list .post-content {
    width: 90%;
  }
  .posts-page .post-list .post-content .post-p1 {
      width: 99%;
  }
}

@media (max-width: 476px) {
  .posts-page .post-category-filter-menu {
    margin-top: 20px;
  }

  .posts-page .post-list{
    margin-bottom: 20px;
  }

  .posts-page .post-category-filter-menu .menu-wrapper{
    justify-content: flex-start;
  }

  .posts-page .post-category-filter-menu .wrapper-category{
    margin-bottom: 10px;
    padding-right: 12px;
  }

  .posts-page .post-showcase{
    margin-top: 20px;
  }

}
