﻿.post-item-custom {
    padding: 0;
    overflow: hidden;
}

.post-image-container {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .post-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

.post-item-custom:hover .post-image-container img {
    transform: scale(1.2);
}

.post-title-custom a {
    font-weight: bold;
    color: #0f6cbd;
    line-height: 1.3;
    text-decoration:none
}

    .post-title-custom a:hover {
        color: #0f6cbd;
        cursor: pointer;
    }

.post-description-custom {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comments-count-custom {
    font-size: 0.875rem;
    margin-left: 5px;
}

