* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; background: #f5f5f5; color: #222; line-height: 1.75; }
a { color: #cc0000; text-decoration: none; }
a:hover { text-decoration: underline; }

/* HEADER */
header { background: #fff; border-bottom: 4px solid #cc0000; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 14px 20px; }
.header-inner a img { display: block; height: 64px; width: auto; }

/* NAV - desktop */
nav { background: #cc0000; position: relative; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; }
nav a.nav-link { color: white; padding: 11px 15px; display: block; font-size: 0.88rem; font-family: Arial, sans-serif; white-space: nowrap; }
nav a.nav-link:hover { background: #aa0000; text-decoration: none; }

/* Hamburger - hidden on desktop */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 12px 20px; color: white; font-size: 1.4rem; line-height: 1; user-select: none; }
.nav-menu { display: flex; flex-wrap: wrap; flex: 1; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 28px 20px; display: grid; grid-template-columns: 1fr 270px; gap: 28px; }
.main { min-width: 0; }
.sidebar { min-width: 0; }
.page-full { max-width: 1100px; margin: 0 auto; padding: 28px 20px; }

/* REVIEW CARDS */
.review-card { background: white; border-radius: 5px; margin-bottom: 20px; padding: 22px 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.09); border-left: 4px solid #cc0000; }
.review-card h2 { font-size: 1.2rem; margin-bottom: 4px; line-height: 1.35; }
.review-card h2 a { color: #111; }
.review-card h2 a:hover { color: #cc0000; }
.card-cats { font-size: 0.8rem; color: #999; margin-bottom: 10px; font-family: Arial, sans-serif; }
.card-cats a { color: #cc0000; }
.excerpt { font-size: 0.95rem; color: #555; line-height: 1.65; }
.read-more { display: inline-block; margin-top: 10px; font-size: 0.83rem; color: #cc0000; font-family: Arial, sans-serif; font-weight: bold; }

/* SINGLE POST */
.post-wrap { display: grid; grid-template-columns: 1fr 270px; gap: 28px; }
.post-full { background: white; border-radius: 5px; padding: 30px 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.09); min-width: 0; }
.post-full h1 { font-size: 1.7rem; margin-bottom: 16px; color: #111; line-height: 1.3; }
.post-content { font-size: 1rem; line-height: 1.8; }
.post-content p { margin-bottom: 1em; }
.post-content img { max-width: 180px; height: auto; float: left; margin: 4px 18px 14px 0; border-radius: 3px; }
.post-content a { color: #cc0000; }
.post-content br { line-height: 2; }
.post-meta-bottom { margin-top: 28px; padding-top: 16px; border-top: 1px solid #eee; font-size: 0.82rem; color: #aaa; font-family: Arial, sans-serif; }
.reviewer-line { margin-top: 24px; padding: 12px 16px; background: #fafafa; border-left: 3px solid #cc0000; font-size: 0.88rem; font-family: Arial, sans-serif; color: #555; font-style: italic; }
.back-link { display: inline-block; margin-bottom: 18px; color: #cc0000; font-family: Arial, sans-serif; font-size: 0.88rem; }

/* SIDEBAR */
.sidebar-box { background: white; border-radius: 5px; padding: 18px 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.09); margin-bottom: 22px; }
.sidebar-box h3 { font-size: 0.78rem; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 1.5px; color: #cc0000; margin-bottom: 12px; border-bottom: 2px solid #f0e0e0; padding-bottom: 8px; }
.sidebar-box ul { list-style: none; }
.sidebar-box ul li { padding: 5px 0; border-bottom: 1px solid #f5f0f0; font-size: 0.88rem; display: flex; justify-content: space-between; align-items: center; }
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li a { color: #333; flex: 1; }
.sidebar-box ul li a:hover { color: #cc0000; }
.cat-count { color: #bbb; font-size: 0.78rem; font-family: Arial, sans-serif; margin-left: 6px; }

/* PAGINATION */
.pagination { text-align: center; padding: 20px 0; }
.pagination a, .pagination span { display: inline-block; padding: 7px 13px; margin: 0 2px; border: 1px solid #ddd; border-radius: 4px; font-family: Arial, sans-serif; font-size: 0.87rem; }
.pagination a { color: #cc0000; background: white; }
.pagination a:hover { background: #cc0000; color: white; text-decoration: none; border-color: #cc0000; }
.pagination .current { background: #cc0000; color: white; border-color: #cc0000; }

/* CATEGORY HEADER */
.cat-header { background: white; border-radius: 5px; padding: 18px 22px; margin-bottom: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.09); border-left: 4px solid #cc0000; }
.cat-header h1 { font-size: 1.4rem; color: #111; }
.cat-header p { color: #999; font-size: 0.87rem; margin-top: 3px; font-family: Arial, sans-serif; }

/* FOOTER */
footer { background: #111; color: #888; text-align: center; padding: 22px 20px; margin-top: 40px; font-size: 0.83rem; font-family: Arial, sans-serif; }
footer a { color: #cc0000; }

/* MOBILE */
@media (max-width: 720px) {
  .header-inner a img { height: 48px; }

  /* hamburger button */
  .nav-toggle-la