/* Originalni stilovi vijesti */
.vijest-wrap { max-width: 960px; margin: 0 auto; padding: 20px; }
.vijest-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; padding: 16px 20px; border-radius: 8px; display: flex; align-items: center; gap: 10px; max-width: 960px; margin: 20px auto; }
.vijest-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 8px 18px; background: white; border: 1px solid #e2e8f0; border-radius: 8px; color: #002B5C; font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.04); }
.vijest-back:hover { background: #002B5C; color: white; border-color: #002B5C; transform: translateX(-3px); }
.vijest-article { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; margin-bottom: 30px; }
.vijest-article-header { padding: 30px 32px 24px; border-bottom: 1px solid #f1f5f9; }
.vijest-article-header h1 { font-size: 1.8rem; font-weight: 700; color: #002B5C; line-height: 1.3; margin: 0 0 16px; }
.vijest-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.vijest-meta-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 20px; font-size: 0.82rem; color: #64748b; }
.vijest-gallery { padding: 0 32px 24px; }
.vijest-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.vijest-gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.3s ease; }
.vijest-gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
.vijest-featured-img { padding: 0 32px 24px; text-align: center; }
.vijest-featured-img img { max-width: 100%; max-height: 420px; border-radius: 10px; border: 1px solid #e2e8f0; }
.vijest-content { padding: 0 32px 32px; font-size: 1rem; line-height: 1.8; color: #334155; }
.vijest-content p { margin-bottom: 16px; }
.vijest-content a { color: #002B5C; font-weight: 600; text-decoration: underline; word-break: break-word; }
.vijest-content a:hover { color: #ffd700; }
.vijest-more-section { margin-top: 10px; }
.vijest-more-header { background: white; border-radius: 12px; padding: 18px 22px; margin-bottom: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; border-left: 4px solid #ffd700; display: flex; align-items: center; gap: 10px; }
.vijest-more-header h2 { font-size: 1.1rem; color: #002B5C; font-weight: 600; margin: 0; }
.vijest-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .vijest-more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vijest-more-grid { grid-template-columns: 1fr; } }
.vijest-more-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; }
.vijest-more-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: #002B5C; }
.vijest-more-card-img { width: 100%; height: 160px; overflow: hidden; background: #f1f5f9; border-bottom: 1px solid #e2e8f0; }
.vijest-more-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.vijest-more-card:hover .vijest-more-card-img img { transform: scale(1.04); }
.vijest-more-card-body { padding: 14px; flex-grow: 1; display: flex; flex-direction: column; }
.vijest-more-card-body h3 { font-size: 0.95rem; font-weight: 600; color: #002B5C; line-height: 1.4; margin: 0 0 10px; flex-grow: 1; }
.vijest-more-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #f1f5f9; }
.vijest-more-date { font-size: 0.78rem; color: #64748b; display: inline-flex; align-items: center; gap: 4px; }
.vijest-more-link { font-size: 0.78rem; font-weight: 600; color: #ffd700; display: inline-flex; align-items: center; gap: 3px; transition: color 0.2s; }
.vijest-more-card:hover .vijest-more-link { color: #002B5C; }
.vijest-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 10000; justify-content: center; align-items: center; padding: 20px; }
.vijest-modal.active { display: flex; }
.vijest-modal img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.vijest-modal-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; line-height: 1; cursor: pointer; transition: all 0.2s; }
.vijest-modal-close:hover { background: #ffd700; color: #002B5C; }
@media (max-width: 768px) {
    .vijest-wrap { padding: 12px; }
    .vijest-article-header { padding: 20px 18px 16px; }
    .vijest-article-header h1 { font-size: 1.4rem; }
    .vijest-gallery { padding: 0 18px 18px; }
    .vijest-featured-img { padding: 0 18px 18px; }
    .vijest-content { padding: 0 18px 20px; }
}
