/**
 * Default Featured Images Styling
 */

.default-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}

.news-card:hover .default-featured-image {
    transform: scale(1.05);
}

/* Add subtle overlay for better text contrast on default images */
.news-card-image {
    position: relative;
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Single Post Featured Image */
.single-featured-image .default-featured-image {
    max-height: 500px;
    width: 100%;
}
