/* Global Image Fix - Prevent Oversized Images */
.card-post img,
.mini-post img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: block;
}

/* Ensure images in content area don't overflow */
.site-content img,
.entry-content img,
.post-content img {
    max-width: 100% !important;
    height: auto !important;
}

/* THUMBNAIL SIZE - Keep images small on news listings */
.news-item .news-thumb {
    width: 200px !important;
    height: 120px !important;
    flex-shrink: 0;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.news-item .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive images */
@media (max-width: 768px) {
    .news-thumb {
        width: 100% !important;
        height: auto !important;
        min-height: 180px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .news-item {
        flex-direction: column;
    }
}

/* Fix sidebar ad widget height */
.sidebar-ad-slot {
    min-height: 250px !important;
    max-height: 300px !important;
}