#sbi_images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
#sbi_images .obs_feed_wrapper_item {
    padding: 0px;
    display: flex;
    flex-direction: column;
    background-color: red;
}
#sbi_images .obs_feed_wrapper_item .obs_feed_img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}
#sbi_images .obs_feed_wrapper_item .obs_feed_content {
    padding: 20px;
}
#sbi_images .obs_feed_wrapper_item .obs_feed_content p {
    margin: 0px;
    font-size: 14px;
    line-height: 1.4;
}
