/* Style TYLKO dla artykułów na stronie głównej */
.home-latest-articles .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.home-latest-articles .col-md-3 {
    width: 33.333%;
    padding: 0 10px;
}

.home-latest-articles .article-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    height: 100%;
}

.home-latest-articles .article-image {
    height: 100px;
    overflow: hidden;
}

.home-latest-articles .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-latest-articles .article-content {
    padding: 8px;
}

.home-latest-articles .article-content h4 {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    max-height: 34px;
    overflow: hidden;
}

.home-latest-articles .article-content a {
    color: #333;
    text-decoration: none;
}

/* Responsywność */
@media (max-width: 768px) {
    .home-latest-articles .col-md-3 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .home-latest-articles .col-md-3 {
        width: 100%;
    }
} 