.ddanas-last-five-news-widget .ddanas-news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.ddanas-last-five-news-widget .ddanas-news-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ddanas-last-five-news-widget .ddanas-news-thumbnail img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.ddanas-last-five-news-widget .ddanas-news-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.ddanas-last-five-news-widget .ddanas-news-time {
    flex: 0 0 20%; /* Vrijeme zauzima 20% */
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.ddanas-last-five-news-widget .ddanas-news-time .ddanas-time-value {
    font-size: 24px; /* Veličina broja */
    font-weight: bold;
    color: #cc0000; /* Boja broja */
}

.ddanas-last-five-news-widget .ddanas-news-time .ddanas-time-unit {
    font-size: 18px; /* Veličina slova ispod broja */
    color: #c4c4c4; /* Boja slova */
    text-transform: lowercase; /* Sva mala slova */
}

.ddanas-last-five-news-widget .ddanas-news-title{
    flex: 1 1 80%; /* Naslov zauzima 80% */
    color: #1a3665; /* Boja naslova */
    font-size: 100%;
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Ograničava naslov na 3 reda */
    -webkit-box-orient: vertical;
}

.ddanas-last-five-news-widget .ddanas-news-title a {
    text-decoration: none;
    color: var(--c-headings) !important;
}

.ddanas-last-five-news-widget .ddanas-news-title a:hover {
	color:#0375bc!important;
}