
/* Blog Cards */
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-content { padding: 20px; }
.blog-date { font-size: 14px; color: #888; display: block; margin-bottom: 6px; }
.blog-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #222; }
.blog-desc { font-size: 15px; color: #555; margin-bottom: 12px; }
.btn-read { font-size: 14px; color: #e63946; text-decoration: none; font-weight: bold; }
.btn-read:hover { text-decoration: underline; }

/* Sidebar */
.sidebar .sidebar-box { margin-bottom: 30px; }
.shadow-box { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 6px 15px rgba(0,0,0,0.08); }
.sidebar-title { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.modern-input { border-radius: 8px; padding: 10px; border: 1px solid #ddd; width: 100%; }
.category-list { list-style: none; padding: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { color: #333; font-weight: 500; text-decoration: none; display: flex; justify-content: space-between; }
.category-list a:hover { color: #e63946; }

/* Recent Blogs */
.recent-blog { margin-bottom: 15px; }
.recent-img { width: 70px; height: 70px; background-size: cover; background-position: center; border-radius: 8px; margin-right: 12px; }
.recent-text h5 { font-size: 15px; font-weight: 600; margin: 0 0 5px; }
.recent-text .date { font-size: 13px; color: #888; }
.no-result { font-size: 18px; color: #888; margin: 20px 0; }