@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --rtv-blue: #004a99;
    --rtv-red: #ed1c24;
}

body { font-family: 'Hind Siliguri', sans-serif; background-color: #fff; color: #333; margin: 0; }
a { text-decoration: none; color: inherit; }

/* Header & Logo */
.top-nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; background: #fff; }
.rtv-logo-box img { height: 50px; }
.top-icons i { font-size: 20px; margin-left: 15px; color: #555; }

/* Category Menu */
.category-bar { background: var(--rtv-blue); overflow-x: auto; white-space: nowrap; display: flex; padding: 5px 0; }
.category-bar a { color: #fff; padding: 8px 15px; font-weight: 600; font-size: 16px; }

/* Lead News */
.lead-news { border-bottom: 2px solid var(--rtv-red); margin-bottom: 15px; }
.lead-news img { width: 100%; height: auto; }
.lead-news-content { padding: 15px; }
.lead-news-content h2 { font-size: 24px; font-weight: 700; color: #000; margin-bottom: 5px; }
.lead-news-content p { color: #777; font-size: 16px; }

/* Grid News */
.grid-item { border-bottom: 1px solid #eee; margin-bottom: 15px; padding-bottom: 10px; }
.grid-item img { width: 100%; border-radius: 4px; }
.grid-item h3 { font-size: 18px; font-weight: 600; margin-top: 10px; line-height: 1.4; }

/* List News (Thumbnail on left) */
.list-item { display: flex; gap: 15px; padding: 10px 15px; border-bottom: 1px solid #eee; }
.list-item img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; }
.list-item h4 { font-size: 16px; font-weight: 600; margin: 0; line-height: 1.4; }

/* Footer */
.footer-main { text-align: center; padding: 40px 20px; border-top: 1px solid #ddd; }
.social-icons a { font-size: 24px; margin: 0 10px; color: #004a99; }
.footer-info { font-size: 14px; margin-top: 20px; color: #444; }
.footer-bottom { background: var(--rtv-blue); color: #fff; padding: 10px; font-size: 14px; }