/* ============================= */
/* css100: RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}


/* ============================= */
/* css110: CONTAINER */
/* ============================= */
.container {
    max-width: 500px;
    margin: auto;
    padding: 0 10px;
}


/* ============================= */
/* css120: HEADER */
/* ============================= */
.header {
    text-align: center;
    background: #ffffff;      /* 🔥 simple bg (stable) */
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
}

/* TITLE */
.logo {
    font-size: 28px;
    font-weight: 900;
    color: #b71c1c;
    margin: 0;
    line-height: 1.2;
}

/* SUB LINE */
.sub-cities {
    font-size: 13px;
    color: #555;
    margin-top: 3px;
}


/* ============================= */
/* css130: LINKS */
/* ============================= */
a {
    text-decoration: none;
    color: black;
}


/* ============================= */
/* css140: NEWS BOX */
/* ============================= */
.news-box {
    background: #ffffff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
}

/* NEWS TITLE */
.news-box h2 {
    font-size: 20px;
    line-height: 1.40;
    font-weight: 700;
}
.breaking {
    color: red;
    font-weight: bold;
}

/* ============================= */
/* css150: NEWS IMAGE */
/* ============================= */
.news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 6px;
}


/* ============================= */
/* css160: AD SECTION */
/* ============================= */
.ad-box {
    margin: 10px 0;
}

.ad-img {
    width: 100%;
    border-radius: 8px;
}


/* ============================= */
/* css170: SINGLE PAGE */
/* ============================= */
.title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.single-img {
    width: 100%;
    border-radius: 8px;
    margin-top: 5px;
}

.content {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}


/* ============================= */
/* css180: SHARE */
/* ============================= */
.share-box {
    text-align: center;
    margin: 15px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
}


/* ============================= */
/* css190: BACK BUTTON */
/* ============================= */
.back-btn {
    display: block;
    text-align: center;
    margin: 15px 0;
    color: #d32f2f;
}


/* ============================= */
/* css200: FOOTER */
/* ============================= */
.footer {
    text-align: center;
    font-size: 13px;
    color: #666;
    padding: 15px 0;
    margin-top: 20px;
}


/* ============================= */
/* css210: MOBILE */
/* ============================= */
@media (max-width: 600px) {

    .logo {
        font-size: 24px;
    }

    .news-img {
        height: 150px;
    }

    .title {
        font-size: 18px;
    }

    .content {
        font-size: 15px;
    }
.news-box h2 {
        font-size: 18px;   /* mobile पर थोड़ा छोटा */
    }
}
