/* Google Fonts को इम्पोर्ट करना - Newspaper Look के लिए */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fcfcfc;
    color: #222;
}

/* न्यूज़पेपर हेडर स्टाइल */
.newspaper-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px double #000;
    padding-bottom: 5px;
}

.newspaper-date-bar {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 0;
}

/* टाइटल्स के लिए */
.news-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}
.news-title:hover {
    color: #444;
}

/* बॉर्डर्स और ग्रिड्स जो न्यूज़पेपर जैसी फील दें */
.border-right-classic {
    border-right: 1px solid #dee2e6;
}

@media (max-width: 991px) {
    .border-right-classic {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* ब्रेकिंग न्यूज़ टिकर */
.breaking-ticker {
    background: #c00;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
}

.news-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 250px;
}

.featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}