/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */



.thumbnail img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover;
}

.post_type_slider .post_slide {
    padding: 10px;
    margin: 10px 10px;
    box-shadow: 0px 2px 6px 2px #d3d3d34d;
}


ul.slick-dots button {
    background: black !important;
}

.meta_category {
    display: flex;
    gap: 10px;
}

.post_meta p{
    
    color:black;
    font-weight:600;
    margin:0px;
    padding:5px 0;
    border-radius:10px;
}

.post_slide ul.slick-dots button:hover {
    border: none !important;
}

.post_slide h2 {
    color: black;
    font-size: 24px;
    line-height: 33px;
    margin: 0 !important;
    padding: 10px 0;
}

ul.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 14px 0;
}

ul.slick-dots li {
    padding: 6px 10px;
    /* background: black; */
    border: none !important;
}

ul.slick-dots li button {
    border: none;
    padding: 5px 10px;
    color: white !important;
}

.post_type_grid {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
}

.post_type_grid .post_slide {
    width: 32%;
    padding: 10px;
    box-shadow: 0px 2px 6px 2px #d3d3d34d;
}

.post_type_slider button.slick-prev.slick-arrow {

    position:absolute;
    left:-2%;
    top:50%;
}

.post_type_slider button.slick-next.slick-arrow{
    cursor: pointer;
    position:absolute;
      top:50%;
    right:-2%;
}

.post_type_slider .slick-arrow:hover,.readmore a:hover{

    background:#0b67ff !important;
    color:white !important;
}

.readmore a{
    display:flex;
    width:fit-content;
    text-decoration: none !important;
}

.readmore {
    margin-bottom:10px;
}

.post_type_slider .slick-arrow{
   width: 40px;
    z-index: 9999;
    /* background: black; */
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 18px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 767px) {

    .post_type_grid .post_slide {

        width: 100%;
    }

    .post_type_grid {
        flex-direction: column;
        gap: 10px;
    }

    .post_slide h2 {
        font-size: 18px;
        line-height: 25px;
    }

    .entry-content p {
        font-size: 16px;
        line-height: 22px;
    }

    .post_type_slider {
        overflow: auto;
    }

    ul.slick-dots li button {
        padding: 4px 8px;
    }

    ul.slick-dots {
        gap: 5px;
        padding: 0;
    }
}

@media (min-width: 320px) and (max-width: 529px){

    .post_type_slider button.slick-next.slick-arrow {
      right: 0%;
    }
    .post_type_slider button.slick-prev.slick-arrow {
        left: 0%;
    }
}