/* NewsGarh - BBC GEL 1:1 Professional Styling */
:root {
    --bbc-red: #B80000;
    --bbc-teal: #006666; /* Authentic Live Teal */
    --bbc-black: #141414;
    --bbc-dark-grey: #222222;
    --bbc-grey: #555555;
    --bbc-border: #EEEEEE;
    --bbc-bg: #FFFFFF;
    --bbc-soft-bg: #F6F6F6;
    --font-main: 'Noto Sans Devanagari', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--bbc-dark-grey);
    background-color: var(--bbc-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* BBC Layout Container */
.container {
    max-width: 1008px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography Hierarchy - Optimized for Hindi Readability */
h1 { font-weight: 700; line-height: 1.4; letter-spacing: -0.01em; }
h2 { font-weight: 700; line-height: 1.5; }
h3 { font-weight: 700; line-height: 1.5; }

a { text-decoration: none; color: inherit; }

/* Global Header - BBC Authentic Solid Red */
.global-header {
    background-color: #B80000;
    color: white;
    height: 60px; /* BBC Desktop Height */
    display: flex;
    align-items: center;
    box-shadow: none;
    padding: 0;
}

.global-header .logo-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BBC Boxed Logo Styling */
.bbc-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bbc-blocks {
    display: flex;
    gap: 3px;
    margin-right: 8px;
}

.bbc-block {
    background-color: #FFFFFF;
    color: #000000;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.bbc-news-text {
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.branding-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.branding-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-left: 12px;
}

/* Navigation - GEL Standards (White + Arial) */
.nav-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6E6E6;
    z-index: 100;
    min-height: 48px;
}

.nav-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px; /* BBC standard nav font size is slightly smaller */
    font-weight: 700; /* BBC Hindi nav uses bold font */
    color: #333333;
    padding: 12px 12px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    border-bottom: 4px solid transparent;
}

.nav-link:hover {
    color: #B80000;
}

.nav-link.active {
    border-bottom-color: #B80000;
    color: #B80000;
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #141414;
    cursor: pointer;
}

/* BBC Mobile Wrap Navigation - No Hamburger */
@media (max-width: 1024px) {
    .global-header {
        height: 64px;
        padding: 0 12px;
    }
    .nav-bar .container, .nav-bar .max-w-\[1008px\] {
        padding: 0;
    }
    .nav-bar .flex {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .nav-link {
        padding: 10px 8px;
        font-size: 15px;
    }
    .nav-search {
        display: none;
    }
}

/* Category Pill */
.category-pill {
    background: var(--bbc-red);
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

/* Article Styling */
.news-article h1 {
    font-size: 32px;
    line-height: 1.25;
}

.article-content {
    max-width: 680px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.65;
}

/* Aspect Ratio Lock */
.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Pulsing Live Icon - Teal Standard */
.animate-pulse {
    background-color: var(--bbc-teal) !important;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Line Clamp Utilites */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Flush News Cards */
.group .overflow-hidden {
    border-radius: 0; /* Fully flush BBC images */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .news-article h1 { font-size: 28px; }
    .global-header .h-10 { height: 32px; }
}


