.post-carousel7 .post-item {
    position: relative;
    overflow: hidden;
}

.post-carousel7 .post-item a {
    display: flex;
}

.post-carousel7 .post-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.post-carousel7 .post-item .post-overlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #FF29429E;
    transition: ease .2s;
}

.post-carousel7 .post-item .details {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    padding: 35px 15px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
    transition: ease .15s;
}

.post-carousel7 .post-item .details h2 {
    font-size: 20px;
    text-align: center;
    color: #fff;
}

.post-carousel7 .post-item .details .subtitle {
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.post-carousel7 .post-item .icon-button-wrap {
    text-align: center;
    margin-bottom: 25px;
}

.post-carousel7 .post-item .icon-button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF2942;
    box-shadow: 0 0 0 7px #FF294252;
    color: #fff;
    border-radius: 50px;
    margin: 0 auto 0 auto;
    transition: ease .2s;
    transform: scale(.5);
    opacity: 0;
    font-size: 25px;
}

.post-carousel7 .post-item .icon-button svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.post-carousel7 .swiper-slide-active .post-item .icon-button {
    opacity: 1;
    transform: scale(1);
}

.post-carousel7 .swiper-slide-active .post-item .post-overlay {
    opacity: 0;
}

.post-carousel7 .swiper-slide-active .post-item .details {
    padding-bottom: 65px;
}

.post-carousel7 .slider-buttons-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-carousel7 .slider-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 5px;
    z-index: 7;
    width: 240px;
}

.post-carousel7 .slider-buttons.without-nav {
    justify-content: center;
}

.post-carousel7 .slider-buttons .swiper-pagination {
    position: relative;
    top: auto;
    padding-top: 7px;
}

.post-carousel7 .slider-buttons .swiper-pagination span {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 3px;
    background-color: #fff;
}

.post-carousel7 .slider-buttons .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #ff2942;
}

.post-carousel7 .slider-buttons .swiper-btn-next,
.post-carousel7 .slider-buttons .swiper-btn-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
}

.post-carousel7 .slider-buttons .swiper-btn-next:hover,
.post-carousel7 .slider-buttons .swiper-btn-prev:hover {
    background-color: #ff2942;
    color: #000;
}