/* Header Actualités */
.news-header {
    background: linear-gradient(135deg, var(--orange-ci) 0%, var(--vert-ci) 100%);
    color: white;
    padding: 80px 0;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--orange-ci);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-ci);
    position: relative;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--orange-ci);
}

.category-list span {
    color: #999;
    font-size: 0.9rem;
}

/* Popular Posts */
.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-content h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.popular-content h6 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-content h6 a:hover {
    color: var(--orange-ci);
}

.popular-content .date {
    font-size: 0.8rem;
    color: #999;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--orange-ci) 0%, var(--vert-ci) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--orange-ci);
    color: white;
}

/* Social Buttons */
.social-buttons .btn {
    border: none;
    color: white;
    padding: 10px;
    text-align: left;
}

.btn-facebook {
    background: #3b5998;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-youtube {
    background: #ff0000;
}

/* Pagination */
.pagination {
    margin-top: 40px;
}

.page-link {
    color: var(--orange-ci);
    border-color: #dee2e6;
}

.page-link:hover {
    color: white;
    background-color: var(--orange-ci);
    border-color: var(--orange-ci);
}

.page-item.active .page-link {
    background-color: var(--orange-ci);
    border-color: var(--orange-ci);
}

/* Responsive */
@media (max-width: 768px) {
    .news-header {
        padding: 60px 0;
    }
    
    .sidebar-widget {
        margin-top: 30px;
    }
}