.posts-slider h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

.posts-slider .slick-slide{
    margin: 1rem;
}

.posts-slider .slick-slide > div{
    width: 100%;
    max-width: 443px;
    
}

.posts-slider .slick-slide > div p {
    text-align: left;
   
}

.posts-slider .slick-slide > div > div {
    font-size: 1.6rem;

}

.post-date {
    margin-top: 1rem;
    font-size: 1.2rem;;
}

.empty-bg, .post-bg {
    width:100%;
    height:353px;
    border-radius: 20px;
}

.empty-bg {
    background:gray;
}

.post-bg {
    background-size: cover !important;
}

.post-date, .post-link {
    font-size: 1rem;
    color: rgb(66, 100, 135);
}

.post-date {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-link {
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 5rem;
    border: 1px solid rgb(230, 230, 231);
    margin: 1rem 0rem;
    display: inline-block;
}

.post-link:hover {
    color: rgba(0, 0, 0, 0.5);
}

.arrows-wrapper {
    position: absolute;
    width: 100%;
    top: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-prev, .slide-next {
    border-radius: 5rem;
    background: black;
    width: 60px;
    height: 60px;
    background-image: url('/wp-content/uploads/2026/01/Blog-Details-slider-arrow.png');
    background-size: cover;
    cursor: pointer;
    position: relative;

}

.slide-prev {
    transform: rotate(180deg);
    left:-5%
}

.slide-next {
    right: -5%;
}

.categories-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    padding: 1rem;
}

.categories-filter-wrapper > p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.category-filter-items-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.categories-filter-wrapper p, .tag-option {
    line-height: 1;
}


.tag-option {
    padding: 1.5rem 2rem;
    border: 1px solid rgb(214,215,271);
    border-radius: 15px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.tag-option:hover, .tag-option.active {
    background-color: rgb(65, 99, 135);
    color: #fff;
}

.tag-option > * {
    pointer-events: none;
}

input[type=checkbox] {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0;
}

.services-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.services-wrapper > div  {
    width: 35%;
    max-width: 446px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 1rem;
    border-radius: 20px;
    background-color:#fff;
    
}

.services-wrapper > div h3 {
    font-size: 2.3rem;
    margin: 1rem 0rem;
    text-align: center;
}

.services-wrapper > div > div:first-of-type {
    background-size: cover !important;
    background-position: -100px 0px !important;
}

.services-wrapper > div > div:last-of-type {
    font-size: 1.3rem;
    margin: 1rem;
    text-align: center;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
}

.page-item {
    padding: 0.8rem 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 50px;
    line-height: 1;
    font-size: 1rem;
    background-color: rgba(0,0,0,0);
    color: #000;
    margin-right: 6px;
    margin-bottom: 6px;
    flex-shrink: 0;
    cursor: pointer;
}

.page-item:hover {
   background-color: rgba(0, 0, 0, 0.15)
}

.page-item.active {
  background-color: rgba(233,205,149,1);
}

@media screen and (max-width: 979px) {
    .categories-filter-wrapper {
       display: flex;
       flex-direction: column;
    }
    
    .tag-option {
        padding: 1rem 1.5rem;
        border: 1px solid rgb(214,215,271);
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px) {
    .services-wrapper > div {
        width: 100%;
    }
}