/* Travel Story Card */
.ww-story-card{
    position:relative;
    border-radius:24px;
    overflow:hidden;
}
 
.ww-story-card .ww-card-image{
    display:block;
    width:100%;
    height:650px;
    overflow:hidden;
    background:linear-gradient(135deg,#0F766E,#0b1f1c);
}
 
.ww-story-card .ww-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
 
.ww-story-card .ww-card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:32px;
    background:linear-gradient(to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05));
}
 
.ww-story-card h3,
.ww-story-card h3 a,
.ww-story-card p,
.ww-story-card span{
    color:#fff !important;
}
 
.ww-story-card .ww-card-meta span{
    color:#e5e7eb !important;
}

.ww-story-card h3{
    font-size:42px;
    line-height:1.15;
    margin:12px 0;
    color:#fff;
}
 
@media (max-width:768px){
 
    .ww-story-card{
        height: 520px;
    }
    
    .ww-story-card h3{
        font-size:42px;
        line-height:1.15;
    }
    
    ww-card-content{
        padding: 32px;
    }
 
       
}
 
 