.description-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;
}

.post-card {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 0;
    background-color: unset;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-card-image {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}

.post-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-body {
    padding: 8px;
    background-color: unset;
}

