<style>

/* ===============================
   GLOBAL RESET + TYPOGRAPHY
================================ */
body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:#f4f6f9;
    color:var(--text);
    line-height:1.6;
    font-size:14px;
}

/* Links */
a{
    color:#0310ff;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* Images */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===============================
   HEADER
================================ */
.simple-header{
    background:#0d1b3d;
    padding:14px 20px;
}

.simple-header a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}

/* ===============================
   MAIN CONTENT
================================ */
.main{
    max-width:900px;
    margin:40px auto;
    background:#fff;
    padding:30px;
    border-radius:6px;
}

/* ARTICLE TITLE */
.post-title{
    font-size:28px;
    line-height:1.25;
    margin:0 0 20px;
    letter-spacing:-0.02em;
    font-weight:700;
}

/* ===============================
   META INFORMATION
================================ */
.meta-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    color:var(--muted);
    font-size:13px;
    margin-bottom:14px;
}

.meta-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid var(--border);
    background:#fafafa;
    border-radius:999px;
    padding:6px 10px;
}

.meta-chip .cat-text{
    color:#111827;
    font-weight:800;
}

/* ===============================
   ARTICLE TYPOGRAPHY
================================ */
.main-post{
    font-size:16px;
    line-height:1.8;
}

.main-post p{
    margin:0 0 14px;
}

.main-post h2{
    margin:26px 0 10px;
    font-size:22px;
    line-height:1.35;
}

h3{
    margin:0;
}

/* ===============================
   BLOCKQUOTE
================================ */
.main-post blockquote{
    margin:16px 0;
    padding:14px 16px;
    border-left:4px solid var(--brand);
    background:#f0fdf4;
    border-radius:10px;
    color:#14532d;
    font-style:italic;
}

/* ===============================
   SIDEBAR WIDGET
================================ */
.widget .w-title{
    background:#f8fafc;
    padding:10px 12px;
    font-weight:900;
    border-bottom:1px solid var(--border);
    font-size:13px;
    letter-spacing:.02em;
    text-transform:uppercase;
}

.widget li a{
    color:#0f172a;
    font-weight:700;
}

.widget li a:hover{
    color:var(--brand);
    text-decoration:none;
}

/* ===============================
   FOOTER
================================ */
.simple-footer{
    background:#0d1b3d;
    color:#fff;
    padding:18px 20px;
    margin-top:40px;
}

.flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links a{
    color:#cfd6f3;
    margin-left:20px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.footer-links a:hover{
    color:#fff;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width:720px){

    .post-title{
        font-size:20px;
    }

    .main{
        padding:20px;
        margin:20px 10px;
    }
}



/* ===== CONTENT + SIDEBAR LAYOUT ===== */
.page-layout{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:25px;
    align-items:flex-start;
}

/* Main article */
.main-content{
    flex:3;
}

/* Sidebar */
.right-sidebar{
    flex:1;
    max-width:320px;
  
}

/* Sidebar Box */
.sidebar-box{
    border:1px solid #ddd;
    background:#f7f7f7;
    border-radius:4px;
    overflow:hidden;
}

.sidebar-title{
    background:#e9ecef;
    padding:12px 15px;
    font-weight:700;
    font-size:14px;
    letter-spacing:.5px;
}

.sidebar-links a{
    display:block;
    padding:14px 15px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
}

.sidebar-links a:hover{
    background:#f2f2f2;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.page-layout{
    flex-direction:column;
}

.right-sidebar{
    position:relative;
    top:auto;
    max-width:100%;
}

}
/* ===== SIDEBAR TEXT BOLD ===== */

.sidebar-title{
    font-weight:700;
}

.sidebar-links a{
    font-weight:700;
}

.newsletter-content p{
    font-weight:700;
}

.newsletter-input{
    font-weight:700;
}

.newsletter-btn{
    font-weight:700;
}


</style>