/* Compact Full-Width News Article Cards */
.news-item-compact {
    width: 100%;
    background: white;
    border: 2px solid #1B4B5A;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.news-item-compact:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.news-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}
.category-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #1B4B5A;
    color: white;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-compact-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #333;
    font-weight: 700;
}
.news-compact-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}
.news-compact-meta i {
    color: #00D084;
}
.meta-date {
    font-weight: 700;
}
.meta-company {
    color: #1B4B5A;
    font-weight: 700;
}
.meta-source {
    font-style: italic;
    font-weight: 700;
}
.news-compact-title {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1.4;
}
.news-compact-title a {
    color: #1B4B5A;
    text-decoration: none;
    transition: color 0.2s ease;
}
.news-compact-title a:hover {
    color: #00D084;
    text-decoration: underline;
}
.news-compact-body {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .news-compact-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-compact-meta {
        width: 100%;
    }
    
    .news-compact-title {
        font-size: 16px;
    }
    
    .news-compact-body {
        font-size: 13px;
    }
}

/* Officer page news cards - reduced font size */
.officer-news-card .news-compact-title {
    font-size: 14px;
}
.officer-news-card .news-compact-body {
    font-size: 10px;
}
.officer-news-card .news-compact-meta {
    font-size: 9px;
}
.officer-news-card .category-tag {
    font-size: 8px;
    padding: 2px 8px;
}
.officer-news-card {
    padding: 12px;
    margin-bottom: 10px;
}

/* Scrollable news container for officer page */
#officer-related-news {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

#officer-related-news::-webkit-scrollbar {
    width: 8px;
}

#officer-related-news::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#officer-related-news::-webkit-scrollbar-thumb {
    background: #1B4B5A;
    border-radius: 4px;
}

#officer-related-news::-webkit-scrollbar-thumb:hover {
    background: #00D084;
}

/* Ensure scrollbar appears - show ~4 articles (each ~140px) */
#officer-related-news {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
}

/* Ensure scrollbar appears - show ~4 articles (each ~140px) */
#officer-related-news {
    max-height: 560px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
}
