/* Custom utility classes to keep HTML clean */
body {
    font-family: 'Inter', sans-serif;
}

/* Image restrictions for Classifieds */
.ad-img {
    height: 200px;
    object-fit: cover;
}

.obi-img {
    filter: grayscale(100%);
}

/* Fix Hero Image size on mobile */
.hero-section img {
    max-height: 400px;
}
@media (max-width: 768px) {
    .hero-section img {
        max-height: 250px;
        margin-top: 2rem;
    }
}
.product-img { height: 250px; object-fit: cover; }
