.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 32px; transition: var(--transition); }
.featured-post:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.featured-post-img { min-height: 280px; background: linear-gradient(135deg, var(--maroon-lt), var(--orange-lt)); display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; }
.featured-badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.featured-post-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.post-category { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.featured-post-body h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 12px; }
.featured-post-body h2 a { color: inherit; }
.post-excerpt { font-size: 14px; color: var(--gray-md); line-height: 1.75; margin-bottom: 16px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--gray-md); margin-bottom: 16px; }
.post-meta-item { display: flex; align-items: center; gap: 6px; }
.read-more { color: var(--orange); font-weight: 600; font-size: 14px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 32px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; }
.blog-card-img.bg-orange { background: linear-gradient(135deg, var(--orange-lt), #fdeee4); }
.blog-card-img.bg-maroon { background: linear-gradient(135deg, var(--maroon-lt), #f5eded); }
.blog-card-img.bg-gray { background: linear-gradient(135deg, var(--gray-lt), #f0f0f0); }
.blog-card-img.bg-blue { background: linear-gradient(135deg, #f0f7ff, #e8f4fd); }
.blog-card-cat { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 12px; }
.blog-card-body { padding: 18px 20px; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 15.5px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 8px; }
.blog-card-body h3 a { color: inherit; }
.blog-card-body p { font-size: 13px; color: var(--gray-md); line-height: 1.75; margin-bottom: 14px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--gray-md); padding-top: 12px; border-top: 1px solid var(--border); }
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 8px; }
.page-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 600; border: 1.5px solid var(--border); background: var(--white); color: var(--gray-dk); cursor: pointer; transition: var(--transition); text-decoration: none; }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.page-btn.wide { width: auto; padding: 0 16px; }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--maroon); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.sidebar-search { display: flex; gap: 8px; }
.sidebar-search input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13.5px; }
.sidebar-search button { background: var(--orange); color: #fff; border: none; padding: 10px 14px; border-radius: 8px; cursor: pointer; }
.sidebar-cat-link { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--gray-dk); text-decoration: none; }
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link span { font-size: 11px; background: var(--gray-lt); color: var(--gray-md); padding: 2px 8px; border-radius: 10px; }
.recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; }
.recent-thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--orange-lt); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.recent-title { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 4px; }
.recent-title a { color: inherit; text-decoration: none; }
.recent-date { font-size: 11.5px; color: var(--gray-md); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip { padding: 5px 13px; border-radius: 20px; font-size: 12px; border: 1.5px solid var(--border); color: var(--gray-dk); background: var(--white); text-decoration: none; }
.tag-chip:hover { border-color: var(--orange); color: var(--orange); }
@media(max-width:900px){ .blog-layout { grid-template-columns: 1fr; } .featured-post { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; } }



/* ------------------------------------------------------------ */
/* ------------- Blog Details --------------- */
.article-hero { background: linear-gradient(135deg, var(--maroon-dk) 0%, var(--maroon) 100%); padding: 60px 0 48px; position: relative; overflow: hidden; }
.article-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); color: #fff; font-weight: 700; line-height: 1.25; margin-bottom: 16px; max-width: 800px; }
.article-hero .lead { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.75; max-width: 680px; margin-bottom: 24px; }
.article-category-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.article-cat-tag { background: rgba(232,101,26,0.25); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); }
.article-meta-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.meta-author { display: flex; align-items: center; gap: 12px; }
.meta-author-img { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.meta-author-name { font-size: 14px; font-weight: 600; color: #fff; }
.meta-author-title { font-size: 12px; color: rgba(255,255,255,0.55); }
.meta-item { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.article-featured-img { height: 320px; background: linear-gradient(135deg, var(--maroon-lt), var(--orange-lt)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 90px; margin-bottom: 32px; border: 1px solid var(--border); overflow: hidden; }
.article-body { font-size: 15.5px; color: #333; line-height: 1.90; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--black); margin: 32px 0 14px; }
.article-body p { margin-bottom: 18px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 24px; }
.article-tag { padding: 5px 13px; border-radius: 20px; font-size: 12px; border: 1.5px solid var(--border); color: var(--gray-dk); background: var(--white); text-decoration: none; }
.share-bar { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); margin: 28px 0; flex-wrap: wrap; }
.author-card { background: var(--gray-lt); border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; display: flex; gap: 20px; margin: 32px 0; }
.author-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--orange-lt); display: flex; align-items: center; justify-content: center; font-size: 34px; flex-shrink: 0; }
.author-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--maroon); margin-bottom: 2px; }
.author-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.related-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-thumb { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.related-body { padding: 14px 16px; }
.related-cat { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; margin-bottom: 6px; }
.related-title { font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.related-title a { color: inherit; text-decoration: none; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--maroon); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; }
.recent-thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--orange-lt); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.recent-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.recent-title a { color: inherit; text-decoration: none; }
@media(max-width:900px){ .article-layout { grid-template-columns: 1fr; } .related-grid { grid-template-columns: 1fr; } }