.khabar-tv-section {
    background: #111;
    color: #fff;
    padding: 25px 20px 30px;
    margin-bottom: 40px;
    margin-top: 50px;
}

.khabar-tv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-top: 2px solid #1e71ff;
    padding-top: 8px;
}

.khabar-tv-title {
    font-size: 22px;
    color: #fff8f8;
    margin: 0;
    font-family: "Mukta", sans-serif;
}

.khabar-tv-more {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-family: "Mukta", sans-serif;
}

.khabar-tv-more:hover {
    text-decoration: underline;
    color: #fff !important;
}

.khabar-tv-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
    gap: 15px;
}

/* MAIN VIDEO */
.khabar-tv-main {
    background: #000;
}

.khabar-tv-iframe-wrap {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

.khabar-tv-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* SIDE LIST */
.khabar-tv-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.khabar-tv-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    background: #1a1a1a;
    cursor: pointer;
    padding: 6px;
    align-items: center;
    transition: background 0.15s ease, transform 0.15s ease;
}

.khabar-tv-item.is-active {
    background: #262626;
}

.khabar-tv-item:hover {
    background: #222;
    transform: translateY(-1px);
}

.khabar-tv-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.khabar-tv-thumb-wrap img {
    display: block;
    width: 100%;
    height: 80px;
}

.khabar-tv-play-icon {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.khabar-tv-text {
    font-size: 14px;
    line-height: 1.3;
}

.khabar-tv-item-title {
    margin: 0;
     font-size: 18px;
}

.khabar-tv-item-title a {
    color: #fff;
    text-decoration: none;
}

.khabar-tv-item-title a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .khabar-tv-grid {
        grid-template-columns: 1fr;
    }
}
