.suggestion-post-element .suggestion-post-element-wrap {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.suggestion-post-element .suggestion-post-content {
    padding: 3rem 2rem;
    background-color: #0000009e;
    backdrop-filter: blur(6px);
}

.suggestion-post-element .post-cover-box {
    display: flex;
    position: relative;
}

.suggestion-post-element .post-cover-box img {
    border-radius: 40px;
    width: 100%;
    height: 460px;
    object-fit: cover;
    box-shadow: 0 25px 50px #e2ab92;
}

.suggestion-post-element .box-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2.3rem;
}

.suggestion-post-element .box-title:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 3px;
    width: 24px;
    height: 24px;
    background-color: #FF2942;
    border-radius: 50px;
    margin-left: 15px;
    box-shadow: 0 0 0 10px rgba(255, 41, 66, 0.34);
    animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 41, 66, 0.56);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 41, 66, 0);
    }
}

.suggestion-post-element .post-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.suggestion-post-element .post-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    align-items: center;
}

.suggestion-post-element .post-metas .movie-rate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background-color: #4FAB5B45;
    color: #4FAB5B;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.suggestion-post-element .post-excerpt-wrap {
    position: relative;
    margin-top: 2rem;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    display: flex;
    gap: 15px;
}

.suggestion-post-element .post-excerpt-wrap .box-icon svg {
    width: 24px;
}

.suggestion-post-element .post-buttons {
    margin-top: 1.5rem;
}

.suggestion-post-element .post-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 20px;
    background-color: #ff2942;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px #ff294273;
    transition: ease .15s;
}

.suggestion-post-element .post-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px #ff294273;
}

.suggestion-post-element .post-buttons a svg {
    width: 20px;
    fill: #fff;
}

@media screen and (max-width: 767px) {
    .suggestion-post-element .post-details-box {
        margin-bottom: 20px;
    }
}