.blog-page { padding: 50px 0; min-height: 70vh; }
.blog-title { font-size: 42px; text-align: center; margin-bottom: 15px; color: var(--color-white); }
.blog-subtitle { text-align: center; color: var(--color-gray-light); margin-bottom: 50px; font-size: 18px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background: var(--color-black-light); border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(214, 255, 64, 0.1); }
.blog-card-image { display: block; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 25px; }
.blog-card-title { font-size: 20px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-title a { color: var(--color-white); text-decoration: none; }
.blog-card-title a:hover { color: var(--color-accent); }
.blog-card-excerpt { color: var(--color-gray-light); font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { color: #666; font-size: 13px; }
.blog-read-more { color: var(--color-accent); text-decoration: none; font-weight: 500; font-size: 14px; }
.blog-read-more:hover { text-decoration: underline; }
.no-posts { text-align: center; color: var(--color-gray-light); padding: 60px 20px; grid-column: 1/-1; }
@media (max-width: 768px) {
    .blog-title { font-size: 32px; }
    .blog-grid { grid-template-columns: 1fr; }
}
