/* latest posts custom post */
.latest-posts-custom-block .single-post {
    -webkit-box-shadow: 0px 0px 18px 0px rgba(199, 199, 199, 1);
    -moz-box-shadow: 0px 0px 18px 0px rgba(199, 199, 199, 1);
    box-shadow: 0px 0px 10px 0px rgba(199, 199, 199, 1);
    background-color: #fcfcfc;
}

.latest-posts-custom-block .card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.latest-posts-custom-block .card {
    border: unset;
    margin-bottom: 1.5rem;
}

.latest-posts-custom-block .single-post-container {
    position: relative;
    overflow: hidden;
}
.latest-posts-custom-block .single-post-container .single-post{
    transition: all .2s ease-in-out;
}

.latest-posts-custom-block .single-post-container:hover .single-post{
    transform: scale(1.01);
}

.latest-posts-custom-block .image {
    height: 200px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.latest-posts-custom-block a.read-more {
    background-color: rgb(41, 83, 142) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    padding: 7px 15px;
    width: auto;
    text-decoration: none !important;
}

.latest-posts-custom-block a.read-more span {
    padding: 0 5px !important;
}

.latest-posts-custom-block .category {
    background-color: rgb(41, 83, 142) !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #ffffff !important;
    padding: 7px 15px;
    margin-right: 5px;
}

.latest-posts-custom-block .title {
    text-decoration: none !important;
}

.latest-posts-custom-block .title h3 {
    font-size: 1.3rem;
}

.post-social-menu-container {
    padding-top: 5px !important;
    padding-right: 0px !important;
    float: right !important;
}

.post-social-menu-container ul.post-social-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-decoration: none !important;
    border-width: 0 !important;
    border-style: solid !important;
    border-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    margin: 0 !important;
    padding: 0 !important;
    word-break: break-word;
}

.post-social-menu-container ul.post-social-menu li {
    padding: 0 !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-width: 0 !important;
    list-style-type: none;
}

.post-social-menu-container ul.post-social-menu li a {
    background-color: rgba(0, 0, 0, 0.21) !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
    display: block;
    border-radius: 4px;
    margin: 0 5px 5px 0 !important;
    color: #fff;
    text-align: center !important;
    transition: all 0.5s;
}

.post-social-menu-container ul.post-social-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.69) !important;
}

.latest-posts-custom-block .single-post .content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media only screen and (max-width: 768px) {
    .latest-posts-custom-block .card-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}