.straus-recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.straus-recipe-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.straus-recipe-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Standard landscape? Or just auto height? User said "featured image on top". Let's assume standard ratio or flexible. */
    overflow: hidden;
    /* Border radius applied by widget settings */
}

.straus-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.straus-recipe-title {
    margin: 0;
    /* Typography/Color/Spacing handled by controls */
}

/* Responsive */
@media (max-width: 767px) {
    .straus-recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}