/* ==========================================================================
   SINGLE NEWS VIEW & STICKY SIDEBAR STYLES
   ========================================================================== */

.news-view-wrapper {
    background-color: #f8f9fa;
}

/* Glavni kontejner članka */
.news-single-card {
    background-color: #ffffff;
    border-radius: 12px;
}

/* Boja brenda (#6b0000) */
.text-theme {
    color: #6b0000 !important;
}

.border-left-theme {
    border-left: 4px solid #6b0000 !important;
}

/* Naslov */
.news-single-title {
    font-size: 1.85rem;
    line-height: 1.35;
    color: #1a1a1a;
}

/* Traka za deljenje */
.news-single-share {
    border-color: #f0f0f0 !important;
}

.viber-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

.viber-button:hover {
    transform: scale(1.1);
}

/* Teaser / Sažetak */
.news-single-teaser {
    font-size: 1.1rem;
    line-height: 1.65;
    background-color: #fcfcfc;
}

/* Sadržaj vesti */
.news-single-content {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #2c2c2c;
}

.news-single-content p {
    margin-bottom: 1.5rem;
}

.news-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.news-single-content iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    border: none;
    border-radius: 10px;
    margin: 1.5rem 0;
}

/* ==========================================================================
   STICKY SIDEBAR (DESNA STRANA)
   ========================================================================== */

/* Fiksiranje desne strane prilikom skrolovanja */
@media (min-width: 992px) {
    .sticky-news-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 90px; /* Razmak od vrha ekrana prilikom skrolovanja */
        z-index: 10;
    }
}

.sidebar-header {
    background-color: #6b0000;
}

/* Unutrašnje vesti u sidebar-u */
.sidebar-news-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.sidebar-news-img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-news-item:hover .sidebar-news-img {
    transform: scale(1.08);
}

.sidebar-news-title {
    font-size: 0.88rem;
    line-height: 1.35;
    font-weight: 600;
}

.sidebar-news-title a {
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Ograničenje na 2 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-title a:hover {
    color: #6b0000 !important;
    text-decoration: none;
}
.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6b0000;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}