

.clanak {
    max-width: 800px;
    margin: 0 auto;
}

/* Kontejner koji drži tekst i overlay */
.content-wrapper {
    position: relative; /* Obavezno za pozicioniranje overlay-a */
}

/* KLASA KOJA SAKRIVA TEKST NA TAČNO 6 LINIJA */
.content-wrapper.preview-mode .text-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Ovdje je ključna izmjena */
    -webkit-box-orient: vertical;
}

/* OVERLAY SA GRADIENTOM I DUGMETOM (ostaje isti) */
.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, transparent 0%, white 80%);
}

.cta-button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}