/* Breaking News Styles */

/* Breaking News List Styles */
.breaking-news-list {
    margin: 30px 0;
}

.breaking-news-list .breaking-news-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.breaking-news-list .breaking-news-item:last-child {
    border-bottom: none;
}

.breaking-news-list .breaking-news-item h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breaking-news-list .breaking-news-item h2 a {
    color: #1C1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breaking-news-list .breaking-news-item h2 a:hover {
    color: #A40002;
}

.breaking-news-list .breaking-news-item .breaking-news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.breaking-news-list .breaking-news-item .breaking-news-meta > span:not(:last-child)::after {
    content: "•";
    margin: 0 8px;
    opacity: 0.7;
}

.breaking-news-list .breaking-news-item .breaking-news-timestamp {
    font-weight: 600;
    color: #A40002;
}

.breaking-news-list .breaking-news-item .breaking-news-excerpt {
    margin-top: 15px;
    color: #4C4C4C;
    line-height: 1.6;
}

.breaking-news-list .breaking-news-item .breaking-news-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.breaking-news-list .breaking-news-item .breaking-news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Breaking News Badge */
.breaking-news-badge-small {
    display: inline-block;
    background-color: #A40002;
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Breaking News Sidebar */
.breaking-news-sidebar {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.breaking-news-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #A40002;
}

.breaking-news-sidebar-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.breaking-news-sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.breaking-news-sidebar-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.breaking-news-sidebar-item h4 a {
    color: #1C1A1A;
    text-decoration: none;
}

.breaking-news-sidebar-item h4 a:hover {
    color: #A40002;
}

.breaking-news-sidebar-item .breaking-news-sidebar-meta {
    font-size: 12px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breaking-news-list .breaking-news-item h2 {
        font-size: 20px;
    }
    
    .breaking-news-list .breaking-news-item .breaking-news-meta {
        flex-wrap: wrap;
    }
}
