/* Featured Image */
.single-featured-image {
    margin: 0 0 2rem;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.single-featured-image .featured-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: block;
}

@media (max-width: 768px) {
    .single-featured-image {
        margin: 0 0 1.5rem;
    }

    .single-featured-image .featured-image {
        max-height: 300px;
        border-radius: 6px;
    }
}
