/* ==============================================
   STRANA KATEGORIJE - DVE KOLONE ČLANAKA
============================================== */

/* Opis kategorije */
.category-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaeaea;
}

/* Grid sa dve kolone */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Kartica za jedan članak */
.category-card {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding-bottom: 24px;
}

.category-card-image {
    width: 100%;
    margin-bottom: 12px;
}

.category-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.category-card-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.category-card-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.category-card-content h2 a {
    text-decoration: none;
    color: #111;
}

.category-card-content h2 a:hover {
    text-decoration: underline;
    color: #ff6600;
}

.category-card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* STAIN specifični dodaci 
.category-card {
    border-left: 3px solid #8b5a2b;
    padding-left: 16px;
    transition: 0.2s;
}

.category-card:hover {
    background: #fef5e8;
    border-left-color: #c47a2e;
    padding-left: 20px;
}

.category-card-image img {
    filter: sepia(0.2);
}

.category-card-image img:hover {
    filter: sepia(0);
}*/

/* Mobile: jedna kolona */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-description {
        font-size: 14px;
    }
}
