.latest-posts-carousel-block {
    display: flex;
    position: relative;
}
.latest-posts-carousel-wrapper {
    flex: 1 1 100%;
    max-width: calc(100% - 98px);
    padding: 0 20px;
}
@media(max-width: 768px) {
    .latest-posts-carousel-wrapper {
        max-width: calc(100% - 60px);
        padding: 0 10px;
    }
}
.latest-posts-carousel-button-left, 
.latest-posts-carousel-button-right {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}
.latest-posts-carousel-button-left .button-prev > img, 
.latest-posts-carousel-button-right .button-next > img {
    width: 49px;
}
@media(max-width: 768px) {
    .latest-posts-carousel-button-left .button-prev > img, 
    .latest-posts-carousel-button-right .button-next > img {
        width: 30px;
    }
}
.latest-posts-carousel-button-left .button-prev, 
.latest-posts-carousel-button-right .button-next {
    opacity: 0.8;
    transition: 0.3s opacity ease-in-out;
}
.latest-posts-carousel-button-left .button-prev:hover, 
.latest-posts-carousel-button-right .button-next:hover {
    opacity: 1;
    cursor: pointer;
}
.latest-posts-carousel-button-left .button-prev[aria-disabled=true], 
.latest-posts-carousel-button-right .button-next[aria-disabled=true] {
    opacity: 0.2;
}
.latest-posts-carousel-button-left .button-prev[aria-disabled=true]:hover, 
.latest-posts-carousel-button-right .button-next[aria-disabled=true]:hover {
    opacity: 0.2;
    cursor: default;
}
.latest-posts-carousel-item-wrapper {
    padding: 10px;
}
@media(max-width: 768px) {
    .latest-posts-carousel-item-wrapper {
        padding: 0;
    }
}
.latest-posts-carousel-item {
    color: #313e47;
    transition: 0.3s transform ease-in-out;
}
.latest-posts-carousel-item .card-header-wrapper {
    /* border-width: 8px 8px 0;
    border-style: solid;
    border-color:#bf788c; */
    border-radius: 50px 50px 0 0;
    background-color: rgba(203, 193, 191, 0.95);
    padding: 8px 8px 0;
}
.latest-posts-carousel-item .card-text-wrapper {
    /* border-width: 0 8px 8px;
    border-style: solid;
    border-color: #d58190; */
    border-radius: 0 0 50px 50px;
    background-color: rgba(216, 194, 179, 0.95);
    padding: 0 8px 8px;
}
.latest-posts-carousel-item .card-header {
    background-color: rgba(203, 193, 191, 0.95);
    border-width: 1px 1px 0;
    border-style: solid;
    border-color: rgba( 197, 196, 196, 0.95);
    border-radius: 45px 45px 0 0;
}
.latest-posts-carousel-item .card-text {
    background-color: rgba(231, 211, 197, 0.95);
    padding: 20px 20px 50px 20px;
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: rgba( 197, 196, 196, 0.95);
    border-radius: 0 0 45px 45px;
    position: relative;
}
.latest-posts-carousel-item .card-text a {
    color: inherit;
}

.latest-posts-carousel-item .card-image {
    height: 200px;
    width: 100%;
    border-radius: 45px 45px 0 0;
    overflow: hidden;
}

.latest-posts-carousel-item .card-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.latest-posts-carousel-item .card-date {
    text-transform: uppercase;
}

.latest-posts-carousel-item .card-footer-wrapper {
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
}
.latest-posts-carousel-item .card-footer {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px;
    background-color: #313e47;
    border-radius: 25px 25px 0 0;
}
.latest-posts-carousel-item .card-footer a {
    color: #fff;
    display: block;
}
.latest-posts-carousel-item .card-footer a:hover {
    text-decoration: unset;
}