/* Simple responsive styling */
body { font-family: Arial, sans-serif; background:#f4f4f4; margin:0; padding:20px; color:#333; }
.container { max-width:1100px; margin:0 auto; display:flex; gap:20px; align-items:flex-start; }
.left { flex:3; }
.right { flex:1; min-width:220px; }
.card { background:#fff; padding:15px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.06); }
.blog-card { display:flex; gap:15px; margin-bottom:18px; background:#fff; padding:15px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.06); }
.blog-card .thumb img { width:180px; height:120px; object-fit:cover; border-radius:6px; }
.blog-card .info h2 { margin:0 0 6px 0; font-size:20px; }
.meta { color:#777; font-size:13px; margin-bottom:8px; }
.readmore { display:inline-block; margin-top:8px; color:#007b55; text-decoration:none; font-weight:600; }
.single { max-width:800px; margin:30px auto; background:#fff; padding:28px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.06); }
.blog-image { width:100%; max-height:400px; object-fit:cover; border-radius:8px; margin:12px 0; }
.content { line-height:1.8; }
.recent { list-style:none; padding:0; margin:0; }
.recent li { margin-bottom:10px; }
.recent a { color:#007b55; text-decoration:none; }
@media (max-width:800px){
  .container { flex-direction:column; }
  .blog-card { flex-direction:column; }
  .blog-card .thumb img { width:100%; height:200px; }
}