/*
Theme Name: Amazing theme
Theme URI: #
Author: 3
Description:#
Version: 1.0
License: GPL-2.0+
Text Domain: Amazing theme
*/
/* Basic spacing helpers; detailed styling comes from Bootstrap */
:root { --sidebar-width: 180px; --header-height: 64px; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; overflow-x: hidden; }
.site-header { border-bottom: 1px solid #eee; }
.site-footer { border-top: 1px solid #eee; }
.post-card img { object-fit: cover; width: 100%; height: 180px; }
.post-meta { font-size: .9rem; color: #6c757d; }
.post-content img { max-width: 100%; height: auto; }
.breadcrumb { --bs-breadcrumb-divider: '›'; }
/* Fixed left sidebar layout */
.sidebar-left { position: fixed; top: var(--header-height); left: 0; height: calc(100vh - var(--header-height)); width: var(--sidebar-width); overflow-y: auto; z-index: 1020;padding-top:60px; }
.site-header { position: relative; z-index: 1030; }
.main-with-sidebar { padding-left: var(--sidebar-width); }
.site-footer { padding-left: var(--sidebar-width); }
@media (max-width: 991.98px) {
  .sidebar-left { width: 180px; }
  .main-with-sidebar { padding-left: 180px; }
  .site-footer { padding-left: 180px; }
}
@media (max-width: 500px) {
  .sidebar-left {display: none;position:static }
  .main-with-sidebar { padding-left: 10px; }
  .site-footer { padding-left: 10px; }
}