/* -------------------------
 GLOBAL NEWS DETAIL PAGE
--------------------------*/

.news-section {
    width: 100%;
    padding: 20px 0;
    background: #fff;
    box-sizing: border-box;
}

.ns-container {
    display: flex;
    gap: 30px;
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* LEFT SECTION */
.ns-left {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.ns-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ns-left p {
    font-size: 14px;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0 0 10px 0;
}

/* MAIN IMAGE */
.main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    object-fit: cover;
}

/* DESCRIPTION */
.desc {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 20px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* "यॆ भी पढ़े" */
.span {
    margin: 25px 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: #E63946;
}

/* SMALL BANNER */
.banner {
    background: #f9fafb;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.banner h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



/* RIGHT SIDE STATIC (AS IS) */

.ns-right {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.ns-right h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* HIGHLIGHTS BOX TITLE */
.ns-right__title {
    width: 100%;
    background: #E63946;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 15px;
    border: none;
}

/* HIGHLIGHTS LIST */

.hl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hl-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    align-items: flex-start;
}

.hl-thumb {
    flex-shrink: 0;
}

.hl-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hl-title {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.hl-title:hover {
    color: #E63946;
}

.hl-excerpt {
    font-size: 13px;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

/* -------------------------
 CITY NEWS BOX
--------------------------*/

.city-news {
    margin-top: 30px;
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.city-header h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    font-size: 18px;
    margin: 0;
}

.city-header select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    flex-shrink: 0;
    min-width: 120px;
}

.news-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #eee;
    align-items: flex-start;
}

.news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-img {
    /* Image sizing moved to image-sizing.css */
}

.news-content h3 {
    font-size: 16px;
    margin: 0;
    color: #111;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.news-footer span {
    font-size: 13px;
    color: #E63946;
    font-weight: 600;
}

/* RESPONSIVE FIX */

@media (max-width: 1024px) {
    .ns-container {
        gap: 20px;
        padding: 0 15px;
    }

    .ns-right {
        width: 300px;
    }

    .ns-heading {
        font-size: 28px;
    }

    .desc {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .ns-container {
        flex-direction: column;
        gap: 20px;
    }

    .ns-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ns-container {
        padding: 0 12px;
        gap: 15px;
    }

    .ns-heading {
        font-size: 24px;
    }

    .desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .span {
        font-size: 20px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-img {
        width: 100%;
        height: 180px;
    }

    .hl-item {
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .hl-thumb img {
        width: 60px;
        height: 50px;
    }

    .hl-title {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .ns-container {
        padding: 0 10px;
    }

    .ns-heading {
        font-size: 20px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.6;
        margin: 15px 0;
    }

    .span {
        font-size: 18px;
        margin: 20px 0 8px 0;
    }

    .news-item {
        flex-direction: column;
        padding: 10px;
    }

    .news-img {
        width: 100%;
        height: 180px;
    }

    .ns-right__title {
        font-size: 16px;
    }

    .city-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .city-header select {
        width: 100%;
    }
}
