
iframe, video {
    min-height: 480px;
    text-align: center;
    background: #000;
}

#ContentPlaceHolder1_Story_image img {
    max-height: 480px;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    background: no-repeat;
    object-position: 0 0;
}

#div_youtube iframe {
    width: 100%;
    max-height: 500px;
}

#div_twitter iframe {
    text-align: center;
    text-align: -webkit-center;
}


:root {
    --red: #e3000f;
    --dark: #111111;
    --mid: #2a2a2a;
    --light: #f5f5f5;
    --border: #e0e0e0;
    --time-col: #888;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: #fafafa;
    color: var(--dark);
    margin: 0;
}

/* ── Top nav ── */
.top-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
}

    .top-nav .sep {
        color: #bbb;
    }

.badge-breaking {
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
}

.btn-epaper, .btn-feedback {
    border: 1.5px solid #ccc;
    background: transparent;
    border-radius: 20px;
    font-size: 0.78rem;
    padding: 4px 14px;
    cursor: pointer;
    transition: background .2s;
}

    .btn-epaper:hover, .btn-feedback:hover {
        background: var(--light);
    }

/* ── Headline banner ── */
.headline-banner {
    background: #fff;
    border-bottom: 3px solid var(--red);
    padding: 14px 20px 12px;
}

.flash-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--time-col);
    letter-spacing: .04em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--red);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-headline {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 900;
    line-height: 1.35;
    color: var(--dark);
}

/* ── News list ── */
.news-list {
    background: #fff;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
    cursor: pointer;
    position: relative;
}

    .news-item:hover {
        background: #fdf3f3;
    }

        .news-item:hover .headline-text {
            color: var(--red);
        }

    .news-item:last-child {
        border-bottom: none;
    }

.news-time {
    flex-shrink: 0;
    width: 62px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--time-col);
    padding-top: 2px;
    white-space: nowrap;
}

.headline-text {
    flex: 1;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
    transition: color .15s;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 2px;
}

    .social-icons a {
        color: #bbb;
        transition: color .15s;
        font-size: 0.85rem;
        text-decoration: none;
    }

        .social-icons a:hover {
            color: var(--red);
        }

/* simple SVG icons inline */
.icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .news-time {
        width: 50px;
        font-size: .72rem;
    }

    .headline-text {
        font-size: .86rem;
    }

    .main-headline {
        font-size: 1.1rem;
    }
}


