.entry-title a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #009A32 !important;
    text-decoration: none;
}
.blog-row a.badge {
    border-radius: 15px;
    font-size: 14px;
}
.uniform-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; // lub np. 3/2, 1/1 itd.
overflow: hidden;
    border-radius: 8px; // opcjonalnie
}

.uniform-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.post-container{
    border-radius: 15px;
}
.blog-row h2.entry-title a{
    font-size: 18px !important;
    line-height: 24px;
}
.blog-row .content-box{
    padding: 12px;
}
@media (max-width: 768px){
    .uniform-image-wrapper img {
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
    }
}