.blog-card {
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
}

.blog-img {
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.section-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--socopravec-yellow);
}

.category-filter {
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 8px 16px;
    cursor: pointer;
}

.category-filter:hover {
    background-color: #f0f0f0;
}

.category-filter.active {
    background-color: var(--socopravec-green);
    color: white;
}

.blog-meta {
    font-size: 0.85rem;
}

.blog-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}