.post-header{
    background: #f8f9fa;
}
.post-title{
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* COVER */
.post-cover{
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* CONTENT */
.post-content{
    font-size: 16px;
    line-height: 1.85;
    color: #212529;
}
.post-content img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.post-content h2, .post-content h3{
    margin-top: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* RELATED CARD */
.post-card{
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.post-media{
    height: 180px;
    display:block;
    overflow:hidden;
}
.post-media img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.post-card:hover .post-media img{
    transform: scale(1.05);
}

.interesting-show-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}