/*
Theme Name: Newspaper Child
Description: Child theme for Newspaper Theme
Author: Your Name
Template: Newspaper
Version: 1.0
*/

/* ====== Global Font & Body ====== */
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.7;
    font-size: 17px;
}

/* ====== Post Title ====== */
h1.entry-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
}

/* ====== Paragraph Spacing ====== */
.td-post-content p {
    margin-bottom: 18px;
    font-size: 18px;
}

/* ====== Link Color ====== */
a {
    color: #d40000;
    text-decoration: none;
}

a:hover {
    color: #000;
}

/* ====== Header Spacing Fix ====== */
.td-header-wrap {
    margin-bottom: 10px;
}

/* ====== Category Label ====== */
.td-post-category {
    font-size: 13px;
    padding: 4px 8px;
}

/* ====== Mobile Optimization ====== */
@media (max-width: 767px) {

    body {
        font-size: 16px;
    }

    h1.entry-title {
        font-size: 24px;
    }

    .td-post-content p {
        font-size: 17px;
    }

}