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



.thumbnail img {
    width: 100% !important;
    height: auto !important;
}

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


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

.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 {
    background: black;
    border: none !important;
}

ul.slick-dots li button {
    border: none;
    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;
}



@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;
    }
}