/* Blog Page Specifics */
.blog-hero { padding: 80px 0 40px; text-align: center; }
.blog-hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.blog-hero p { max-width: 700px; margin: 0 auto; color: #666; font-size: 1.1rem; }

/* Featured Post Card */
.featured-post { margin-bottom: 60px; }
.featured-card { 
    display: grid; grid-template-columns: 1.2fr 1fr; 
    background: #fff; border: 1px solid #eee; overflow: hidden;
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-content { padding: 50px; background: #1a1a1a; color: #fff; }
.category-tag { background: #d4af37; color: #000; padding: 4px 12px; font-weight: bold; font-size: 0.75rem; text-transform: uppercase; }
.featured-content h2 { font-size: 2.2rem; margin: 20px 0; line-height: 1.2; }
.featured-bullets { list-style: none; margin: 25px 0; padding: 0; color: #ccc; }
.featured-bullets li::before { content: "• "; color: #d4af37; font-weight: bold; }
.read-more-btn { color: #d4af37; text-decoration: none; font-weight: bold; border-bottom: 2px solid #d4af37; padding-bottom: 4px; }

/* Article Grid Layout */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.blog-card { background: #fff; border: 1px solid #eee; transition: 0.3s; position: relative; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-image { position: relative; height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { position: absolute; top: 15px; left: 15px; background: #fff; color: #000; padding: 3px 10px; font-size: 0.7rem; font-weight: bold; }
.card-text { padding: 25px; }
.card-text h3 { font-size: 1.25rem; margin-bottom: 15px; line-height: 1.4; }
.card-text p { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 20px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; font-size: 0.8rem; }
.stretched-link::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Sidebar Lead Magnet */
.lead-magnet-card { background: #1a1a1a; color: #fff; padding: 30px; border-radius: 4px; text-align: center; }
.lead-magnet-card h3 { color: #d4af37; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 10px; }
.lead-magnet-card h4 { font-size: 1.4rem; margin-bottom: 15px; }
.download-btn { display: block; background: #d4af37; color: #000; padding: 12px; font-weight: bold; text-decoration: none; margin: 20px 0; border-radius: 2px; }

/* Responsive */
@media (max-width: 1000px) {
    .blog-layout { grid-template-columns: 1fr; }
    .featured-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .article-grid { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 2.5rem; }
}