/* Hero Section */
header {
    background-position: center;
    background-size: cover;
    min-height: 60vh;
}

/* Blog Card Styles */
.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        min-height: 50vh;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}