.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Małe urządzenia (tablety, 768px i w górę) */
@media (min-width: 768px) {
    .col-6 {
        width: 50%;
    }
}



html body .feed-card img {
    border-radius: 15px;
}

html body .feed-card:hover .feed-title-box,
html body .feed-card:focus .feed-title-box {
    background: linear-gradient(180deg, rgb(12, 109, 112) 4%, rgb(18, 157, 162) 84%);
    box-shadow: 0 3px 25px rgba(17.99999999999999, 156.99999999999997, 162, 0.8);
    transform: translateY(-20%);
    transition: all 1100ms cubic-bezier(0.19, 1, 0.22, 1);
}

html body .feed-card:hover .feed-title-box h3,
html body .feed-card:focus .feed-title-box h3 {
    color: #fff;
}

html body .feed-card:hover .feed-title-box p,
html body .feed-card:focus .feed-title-box p {
    color: #202020;
}

html body .feed-card .feed-title-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 89%;
    padding: 21px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 45px rgba(0,0,0,0.33);
    top: -81px;
    transition: all 1100ms cubic-bezier(0.19, 1, 0.22, 1);
    margin: 0 auto;
    min-height: 190px;
}

html body .feed-card .feed-title-box h3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #202020;
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
}

html body .feed-card .feed-title-box p {
    margin: 0;
    color: #202020;
}