.cp_filter_row{
  display: grid;
  grid-template-columns: 1fr 3.3fr;
  gap: 220px;
}
.cp_cat_wrapper{
  margin-top: 210px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  margin-bottom: 50px;
  margin-left: 13px !important;
  margin-top: 0px !important;
  align-items: flex-start !important;
}


.cp_filter_posts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 35px;
}


.cp_post{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cp_post h2{
  font-family: "Made Tommy Light", Sans-serif;
  color:#0000d2;
}

.cp_post_cat{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Made Tommy Light", Sans-serif;
  color:#0000d2;
}
.cp_post_img{
  min-height: 415px;
  max-height: 415px;
  overflow: hidden;
}
.cp_post_img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s;
  width: 100%;
}
.cp_post_img img:hover {
  transform: scale(1.2);
}







.cp_cat_wrapper span.cat_active{
  border-left: 2px solid #0000d2;
  color:#0000d2;
}
.cp_cat_wrapper > span{
  color:#7474d9;
}
.cp_cat_wrapper > span{
  border-left: 2px solid transparent;
  padding-left: 13px;
  line-height: 1.5;
  padding-top:5px;
  padding-bottom: 5px;
  font-size:16px ;
  font-family: "Made Tommy Light", Sans-serif;
}

.cp_cat_wrapper > span:hover{
  cursor: pointer;
}

.cp_load_more{
  background: #0000d2;
  padding: 15px 20px;
  border-radius: 30px;
  color: #ffffff;
}
.load_more_cp{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px){
  .cp_filter_row{
    grid-template-columns: 1fr; /* Set to 1 column */
    gap:50px;
  }
  .cp_cat_wrapper{
    flex-direction: row;
    overflow-x: auto;
    gap: 15px;
    margin-left:0px;

  }
  
  .cp_cat_wrapper span{
    border: 0px !important;
  }
}

@media screen and (max-width: 767px) {
 
  .cp_filter_posts {
    grid-template-columns: 1fr; /* Set to 1 column */
    gap:35px;
  }
 
}


