
.featured_post_item{
    position: relative;
    text-align: left;
    display: inline-block;
    width: 33%;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 48px;
    vertical-align: top;
}

.featured_post_item .image_wrap{
    width: 100%; 
    height: 250px; 
    border-radius: 30px; 
    overflow: hidden; 
    margin-bottom: 21px;
    rotate: 0deg;
    transition: .3s;
}

.featured_post_item .image_wrap img{
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    scale: 1;
    transition: .3s;
}



.featured_post_item .topic_info{
    margin-top: 4px;
    padding-right: 64px;
    position: relative;
    
}

.featured_post_item:hover a.button.read_button{
    scale: var(--hoverScale);
    background-color: var(--highlightColor);
}

.featured_post_item .topic_info a.button.read_button{
    position: absolute;
    right: 0;
    bottom: 0;
}

.featured_post_item .topic_info .ow_avatar{
    vertical-align: middle;
    display: inline-block;
    padding-left: 0;
    width: 24px;
    height: 24px;
    display: none;
}

.featured_post_item .topic_info .ow_avatar_label{
    display: none;
}

.featured_post_item .topic_info .ow_avatar img{
    width: 100%;
    height: 100%;
}

.featured_post_item .topic_info .topic_title{
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    font-size: 0.9em;
    line-height: 1.2;
}

.featured_post_item .topic_info .topic_title a{
    text-decoration: none;
}

.featured_post_item .topic_info .topic_brief,
.featured_post_item .topic_info .topic_time{
    opacity: 0.8;
}

.featured_post_item .topic_info .topic_title h3,
.featured_post_item .topic_info .topic_brief{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_post_item .item_tag{
    position: relative;
    margin-bottom: 11px;
    width: max-content;
}


.featured_posts_cmp_wrap{
    overflow-x: auto;
}

.featured_posts_cmp_wrap .scrollable_featured_posts_wrap{
    width: 100%;
    text-align: left;
    max-width: 1246px;
    margin: auto;
}


.carousel_body .carousel_featured_post_item .topic_info,
.carousel_body .carousel_featured_post_item .topic_image_url{
    display: inline-block;
    vertical-align: bottom;
}

.carousel_body .carousel_featured_post_item .topic_image_url{
    width: 50%;
    margin-right: 5px;
    height: 368px;
}

.carousel_body .carousel_featured_post_item .topic_image_url .image_wrap{
    height: 100%;
} 

.carousel_body .carousel_featured_post_item .topic_info{
    width: calc(50% - 50px);
    padding-left: 34px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.carousel_body .carousel_featured_post_item .topic_info .item_tag{
    margin-bottom: 20px;
}

.carousel_body .carousel_featured_post_item .topic_image_url img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px
}

.home_index .featured_posts_cmp_wrap{
    overflow-x: unset;
    margin-left: auto;
    margin-right: auto;
}

.home_index .pet_star .section_content{
    overflow-x: auto;
}

@media screen and (max-width: 1200px){
    .featured_post_item{
        width: calc(50% - 4px);
    }
}

@media screen and (max-width: 640px){
    .featured_post_item{
        width: 100%;
        margin-bottom: 24px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .featured_post_item .image_wrap{
        height: 236px;
    }
}