/* ==================================== */
/* Styles de base et typographie */
/* ==================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    color: #333;
}

/* ==================================== */
/* Loader */
/* ==================================== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loader-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==================================== */
/* Header et Navigation */
/* ==================================== */
.main-header a {
	text-decoration:none;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 5px 50px;
    background-color: transparent;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.logo-slogan {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    margin: 0;
    margin-top: -6px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #cccccc;
}

/* ==================================== */
/* Slider */
/* ==================================== */
.main-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 3s ease-in-out, visibility 5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

	.slide1{
		background-image: url('../images/slide1.jpg');
	}
	.slide2{
		background-image: url('../images/slide2.jpg');
	}
	.slide3{
		background-image: url('../images/slide3.jpg');
	}
	.slide4{
		background-image: url('../images/slide4.jpg');
	}
	.slide5{
		background-image: url('../images/slide6.jpg');
	}
	
.background-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-content a{
	text-decoration:none;
	font-size:0.8em;
	color:#F4A000;
}
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-98%, -50%);
    color: white;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
	width:30%;
}

.slider-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.slider-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
}

.prev-arrow, .next-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 3px 3px 0;
    z-index: 10;
}

.next-arrow {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-arrow {
    left: 0;
}

.prev-arrow:hover, .next-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #444;
}

.dot:hover {
    background-color: #333;
}

.pause-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.pause-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ==================================== */
/* Amélioration des sections de contenu */
/* ==================================== */
.content-section {
    padding: 100px 0;
    text-align: center;
    background-color: #FAFAFA;
    border-bottom: 1px solid #e0e0e0;
}

.content-section.alternate-bg {
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
	line-height:1.5;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-text {
    flex: 1;
    max-width: 50%;
}

.content-image {
    flex: 1;
    max-width: 50%;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Grille de services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Produits */
.product-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.product-item:last-of-type {
    margin-bottom: 0;
}

.product-image {
    flex: 1;
    max-width: 50%;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-description {
    flex: 1;
    max-width: 50%;
}

.product-description h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.step-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.step-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}
/* ==================================== */
/* Styles de la liste de mission */
/* ==================================== */
.mission-list {
    list-style: none; /* Enlève les puces par défaut */
    padding-left: 0;
    margin-top: 5px;
}

.mission-list li {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #444;
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
}

.mission-list li:before {
    content: '\2022'; /* Crée une puce ronde */
    color: #3498db;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -5px;
}
/* ==================================== */
/* Section Chiffres Clés (Stats) */
/* ==================================== */
.stats-counter-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    flex-basis: 25%;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #F58905; /* Couleur des chiffres */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d; /* Couleur du texte */
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 768px) {
    .stats-counter-container {
        flex-direction: column;
        gap: 30px;
    }
    .stat-item {
        flex-basis: 100%;
    }
}


/* ==================================== */
/* Section Équipe (Team) */
/* ==================================== */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
	text-align:center;
}

.team-member {
    max-width: 200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
	padding-bottom:10px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #888;
}

.team-member h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.team-member .role {
    font-size: 1rem;
    color: #666;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-member .contact {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.team-member .contact i {
    color: #3498db;
    margin-right: 5px;
}

/* Styles Responsifs pour la section team */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}
/* Formulaire de contact */
.contact-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-list li{
	list-style-type:none
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2980b9;
}

.message-success {
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 20px;
}

.message-error {
    color: #c0392b;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Pied de page (Footer) */
.main-footer {
    background-color: #1a1a1a;
    color: #f4f4f4;
    padding-top: 60px;
    font-size: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links-list ul {
    list-style: none;
    padding: 0;
}

.footer-links-list ul li {
    margin-bottom: 10px;
}

.footer-links-list ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list ul li a:hover {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #3498db;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

/* ==================================== */
/* Styles Responsifs */
/* ==================================== */
@media (max-width: 768px) {
    /* Header et Navigation */
    .main-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 20px;
    }

    .logo {
        align-items: center;
    }

    .logo-title {
        font-size: 1.8rem;
    }

    .logo-slogan {
        font-size: 0.8rem;
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 2px;
    }
    
    .main-nav ul li {
        margin: 2px 5px;
    }
    
    .main-nav ul li a {
        font-size: 0.9rem;
    }

    /* Slider */
	.slider-content {
		position: absolute;
		top: 35%;
		left: 50%;
		transform: translate(-68%, -50%);
		color: white;
		text-align: left;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
		padding: 10px;
		width:70%;
	}

	.slide1{
		background-image: url('../images/slide11.jpg');
	}
	.slide2{
		background-image: url('../images/slide12.jpg');
	}
	.slide3{
		background-image: url('../images/slide13.jpg');
	}
	.slide4{
		background-image: url('../images/slide14.jpg');
	}
	.slide5{
		background-image: url('../images/slide16.jpg');
	}
    .slider-content h1 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .slider-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .prev-arrow, .next-arrow {
        display: none;
    }

    .pagination {
        bottom: 60px;
    }
    
    .pause-btn {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Sections de contenu */
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section p, .content-section li {
        font-size: 1rem;
    }

    .content-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .content-row.reverse-on-mobile {
        flex-direction: column-reverse;
    }

    .content-text, .content-image {
        max-width: 100%;
    }

    /* Grille de services */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item {
        padding: 20px;
    }

    /* Produits */
    .product-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-item.reverse-on-mobile {
        flex-direction: column-reverse;
    }

    .product-image, .product-description {
        max-width: 100%;
    }

    .product-description h3 {
        font-size: 1.6rem;
    }

    .process-title {
        font-size: 1.8rem;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-item h4 {
        font-size: 1.2rem;
    }

    /* Contact */
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info, .contact-form-container {
        flex: none;
        width: 100%;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info ul li, .contact-info p {
        font-size: 1rem;
    }

    /* Pied de page (Footer) */
    .main-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        font-size: 1.3rem;
        margin: 0 10px;
    }
}



/***********sociele***************************/
/***********sociele***************************/
/***********sociele***************************/
/***********sociele***************************/
.sociale_content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
	margin-top:10px;
}

.socialeg {
    flex: 3;
}
.socialer {
    flex: 1;
	border-left: 2px solid grey;
	padding:2%;
}
.socialer a{
    color : #333;
}
.socialer li{
    list-style-type:none;
	padding-left:5px;
}

.sociale_content img {
    max-width: 90%;
	padding:20px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* --- Styles pour les actualités --- */
/* --- Styles pour les actualités --- */
/* --- Styles pour les actualités --- */
/* --- Styles pour les actualités --- */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.actu-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.actu-image-container {
    height: 200px;
    overflow: hidden;
}

.actu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    background-color: #e9ecef;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c757d;
}

.actu-content {
    padding: 20px;
    text-align: left;
}

.actu-type {
    display: inline-block;
    background-color: #007bff;
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.actu-content h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.actu-content p {
    font-size: 0.9em;
}

.actu-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #2c3e50;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

/* --- Styles pour la page de détails d'article --- */
/* --- Styles pour la page de détails d'article --- */
/* --- Styles pour la page de détails d'article --- */
/* --- Styles pour la page de détails d'article --- */
.article-detail-section {
    padding: 80px 0;
    min-height: 80vh;
}

.article-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.back-link-kineden {
    display: inline-block;
    margin-bottom: 25px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.back-link-kineden:hover {
    color: #3498db;
}

.article-type {
    display: inline-block;
    background-color: #3498db;
    color: white;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.article-content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Galerie d'images */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.article-gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.article-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-content-wrapper {
        padding: 20px;
    }
    .article-content-wrapper h1 {
        font-size: 1.8rem;
    }
}
/* --- Styles pour la mise en page en grille --- */
.article-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px; /* Augmenter la largeur maximale pour accueillir la colonne latérale */
}

.main-article-column {
    flex: 3; /* Prend environ 70% de l'espace */
}

.sidebar-column {
    flex: 1; /* Prend environ 30% de l'espace */
}

/* --- Styles de l'image principale --- */
.main-featured-image {
    margin-bottom: 30px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Styles de la galerie et des images secondaires --- */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.secondary-image-card {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.secondary-image-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.secondary-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Styles du menu contextuel (Sidebar) --- */
.recent-posts-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky; /* Rendre le menu contextuel collant au défilement */
    top: 20px; /* Marge par rapport au haut de l'écran */
}

.recent-posts-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
}

.recent-posts-list li a {
    display: block;
    color: #495057;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.recent-posts-list li a:hover {
    color: #007bff;
}

.recent-date {
    font-size: 0.8rem;
    color: #adb5bd;
}

.btn-sidebar {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #f1f3f5;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-sidebar:hover {
    background-color: #dee2e6;
}

/* --- Responsive adjustments --- */
@media (max-width: 992px) {
    .article-grid {
        flex-direction: column;
    }
    
    .sidebar-column {
        order: -1; /* Placer la sidebar en haut sur mobile */
        width: 100%;
        position: static; /* Désactiver le sticky sur mobile */
    }
}