/* Blog specific styles */
.blog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tag-button {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-active {
    background-color: #2563eb !important;
    color: white !important;
    border-color: #1d4ed8 !important;
}

.post-date {
    color: #4b5563;
    font-size: 0.875rem;
}