	/* ==========================================
	   STYLES SPÉCIFIQUES PAGE D'ACCUEIL (INDEX)
	   ========================================== */

	/* Section Publications Grid */
	.publications-grid {
	    display: grid;
	    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	    gap: 35px; /* Ajusté à 35px */
	    margin-top: 30px;
	}

	/* Carte de publication */
	.publication-card {
	    background: white;
	    border-radius: 12px;
	    overflow: hidden;
	    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	    transition: all 0.3s ease;
	    cursor: pointer;
	    display: flex;
	    flex-direction: column;
	}

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

	/* IMAGE DE LA PUBLICATION - TAILLE NORMALE */
	.publication-image {
	    width: 100%;
	    height: auto; /* Hauteur automatique - garde les proportions */
	    object-fit: cover;
	    object-position: center;
	    display: block;
	    max-height: 400px; /* Limite maximale pour ne pas être trop grande */
	}

	/* Corps de la publication */
	.publication-body {
	    padding: 20px;
	    display: flex;
	    flex-direction: column;
	    flex: 1;
	}

	/* Titre de la publication */
	.publication-title {
	    font-size: 1.2rem;
	    font-weight: 600;
	    color: #262626;
	    margin-bottom: 12px;
	    line-height: 1.4;
	    /* Limite à 2 lignes */
	    display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	}

	/* Extrait du texte */
	.publication-excerpt {
	    font-size: 0.95rem;
	    color: #666;
	    line-height: 1.6;
	    margin-bottom: 15px;
	    /* Limite à 3 lignes */
	    display: -webkit-box;
	    -webkit-line-clamp: 3;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	}

	/* Métadonnées (catégorie et date) */
	.publication-meta {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    font-size: 0.85rem;
	    color: #999;
	    margin-bottom: 15px;
	    flex-wrap: wrap;
	    gap: 10px;
	}

	.publication-category {
	    background: var(--primary-color);
	    color: white;
	    padding: 4px 12px;
	    border-radius: 15px;
	    font-weight: 500;
	    font-size: 0.8rem;
	}

	/* Bouton Lire la suite */
	.btn-read-more {
	    display: inline-flex;
	    align-items: center;
	    gap: 8px;
	    color: var(--primary-color);
	    text-decoration: none;
	    font-weight: 600;
	    font-size: 0.9rem;
	    transition: all 0.3s ease;
	    margin-top: auto; /* Pousse le bouton vers le bas */
	}

	.btn-read-more:hover {
	    color: var(--primary-dark);
	    gap: 12px;
	}

	.btn-read-more i {
	    transition: transform 0.3s ease;
	}

	.btn-read-more:hover i {
	    transform: translateX(5px);
	}

	/* Message "Aucune publication" */
	.no-publications {
	    text-align: center;
	    padding: 80px 20px;
	    background: white;
	    border-radius: 15px;
	    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	}

	.no-publications i {
	    font-size: 5rem;
	    color: #ddd;
	    margin-bottom: 20px;
	}

	.no-publications h3 {
	    color: #666;
	    font-size: 1.5rem;
	    margin-bottom: 10px;
	}

	.no-publications p {
	    color: #999;
	    font-size: 1rem;
	}

	/* Styles pour les cartes de culte - ORIGINAL */
	.worship-schedule-card {
	    background: var(--hover-bg);
	    padding: 20px;
	    border-radius: 8px;
	    border-left: 3px solid var(--accent-color);
	    transition: all 0.3s ease;
	}

	.worship-schedule-card:hover {
	    background: var(--light-bg);
	    transform: translateY(-5px);
	    box-shadow: 0 5px 15px var(--shadow-color);
	}

	.worship-schedule-card h5 {
	    color: var(--primary-color);
	    margin-bottom: 10px;
	    font-weight: 600;
	    display: flex;
	    align-items: center;
	    gap: 8px;
	}

	.worship-schedule-card h5 i {
	    color: var(--accent-color);
	}

	.worship-schedule-card .time-info {
	    margin: 5px 0;
	    color: var(--dark-text);
	    font-weight: 500;
	    display: flex;
	    align-items: center;
	    gap: 5px;
	}

	.worship-schedule-card .time-info i {
	    color: var(--primary-color);
	}

	.worship-schedule-card .description {
	    margin: 0;
	    color: var(--dark-text);
	    opacity: 0.8;
	}

	[data-theme="black"] .worship-schedule-card {
	    background: var(--medium-bg);
	}

	[data-theme="black"] .worship-schedule-card:hover {
	    background: var(--hover-bg);
	}

	[data-theme="black"] .worship-schedule-card .time-info,
	[data-theme="black"] .worship-schedule-card .description {
	    color: var(--dark-text);
	}

	/* Carte Google Maps - ADAPTÉ RESPONSIVE */
	.map-container {
	    width: 100%;
	    max-width: 100%;
	    height: 400px;
	    border-radius: 10px;
	    overflow: hidden;
	    box-shadow: 0 4px 15px var(--shadow-light);
	    margin-top: 20px;
	    margin-bottom: 25px;
	}

	.map-placeholder {
	    width: 100%;
	    height: 100%;
	    background: var(--light-bg);
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    gap: 15px;
	    border: 2px dashed var(--border-color);
	    padding: 40px 20px;
	}

	.map-placeholder .map-icon {
	    font-size: 48px;
	    color: var(--primary-color);
	}

	.map-placeholder .map-title {
	    color: var(--primary-color);
	    margin: 0;
	    font-size: 1.5rem;
	}

	.map-placeholder .map-text {
	    color: var(--dark-text);
	    margin: 0;
	    text-align: center;
	}

	.btn-map {
	    background: var(--primary-color);
	    color: white;
	    padding: 12px 20px;
	    border: none;
	    border-radius: 25px;
	    cursor: pointer;
	    font-weight: 500;
	    transition: all 0.3s ease;
	    text-decoration: none;
	    display: inline-flex;
	    align-items: center;
	    gap: 8px;
	    box-shadow: 0 4px 10px var(--shadow-color);
	}

	.btn-map:hover {
	    background: var(--primary-dark);
	    color: white;
	    transform: translateY(-3px);
	    box-shadow: 0 6px 15px var(--shadow-color);
	}

	.btn-map i {
	    font-size: 16px;
	}

	.map-container iframe {
	    width: 100%;
	    height: 100%;
	    border: none;
	    display: block;
	}

	/* Section map subtitle */
	.section-subtitle {
	    font-size: 1.1rem;
	    color: #666;
	    text-align: center;
	    margin-bottom: 20px;
	}

	[data-theme="black"] .section-subtitle {
	    color: var(--dark-text);
	}

	/* Bouton Contact - ORIGINAL */
	.btn-contact {
	    background: var(--primary-color);
	    color: white;
	    padding: 12px 30px;
	    border-radius: 25px;
	    text-decoration: none;
	    display: inline-block;
	    transition: all 0.3s ease;
	    font-weight: 500;
	    box-shadow: 0 4px 10px var(--shadow-color);
	}

	.btn-contact:hover {
	    background: var(--primary-dark);
	    color: white;
	    transform: translateY(-3px);
	    box-shadow: 0 6px 20px var(--shadow-color);
	}

	.btn-contact i {
	    margin-right: 8px;
	}

	/* Carte Verset du Jour - ORIGINAL */
	.verse-card {
	    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
	    color: white;
	    border-left: 4px solid var(--accent-color) !important;
	}

	.verse-card h2 {
	    color: var(--accent-color) !important;
	}

	.verse-card h2 i {
	    color: var(--accent-color);
	    margin-right: 10px;
	}

	.verse-divider {
	    background: rgba(255, 255, 255, 0.3) !important;
	}

	.verse-text {
	    font-size: 18px;
	    font-style: italic;
	    color: white !important;
	    line-height: 1.8;
	    margin-bottom: 15px;
	}

	.verse-reference {
	    text-align: right;
	    color: var(--accent-color) !important;
	    font-weight: bold;
	    margin: 0;
	}

	/* ==========================================
	   RESPONSIVE - TABLETTES
	   ========================================== */
	@media (max-width: 1024px) {
	    .publications-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 35px; /* Ajusté à 35px */
	    }
	    
	    .publication-image {
		height: auto;
		max-height: 350px;
	    }
	}

	/* ==========================================
	   RESPONSIVE - MOBILE
	   ========================================== */
	@media (max-width: 768px) {
	    /* Grid en une seule colonne */
	    .publications-grid {
		grid-template-columns: 1fr;
		gap: 35px; /* Ajusté à 35px */
		padding: 0;
	    }
	    
	    /* Carte de publication mobile */
	    .publication-card {
		border-radius: 0; /* Pleine largeur */
		margin-left: 0;
		margin-right: 0;
	    }
	    
	    /* IMAGE TAILLE NORMALE SUR MOBILE */
	    .publication-image {
		height: auto;
		max-height: 300px;
		border-radius: 0;
	    }
	    
	    .publication-body {
		padding: 15px;
	    }
	    
	    .publication-title {
		font-size: 1.1rem;
		-webkit-line-clamp: 2;
	    }
	    
	    .publication-excerpt {
		font-size: 0.9rem;
		-webkit-line-clamp: 2; /* Seulement 2 lignes sur mobile */
	    }
	    
	    .publication-meta {
		font-size: 0.8rem;
	    }
	    
	    .publication-category {
		font-size: 0.75rem;
		padding: 3px 10px;
	    }
	    
	    .btn-read-more {
		font-size: 0.85rem;
	    }
	    
	    /* No publications */
	    .no-publications {
		padding: 60px 15px;
		border-radius: 0;
	    }
	    
	    .no-publications i {
		font-size: 4rem;
	    }
	    
	    .no-publications h3 {
		font-size: 1.3rem;
	    }
	    
	    .no-publications p {
		font-size: 0.9rem;
	    }
	    
	    /* Worship cards */
	    .worship-schedule-card {
		padding: 20px;
		margin-bottom: 15px;
	    }
	    
	    .worship-schedule-card h5 {
		font-size: 1.1rem;
	    }
	    
	    .worship-schedule-card .time-info {
		font-size: 1rem;
	    }
	    
	    .worship-schedule-card .description {
		font-size: 0.9rem;
	    }
	    
	    /* Map container */
	    .map-container {
		height: 350px;
		border-radius: 0;
		margin-left: -15px;
		margin-right: -15px;
		width: calc(100% + 30px);
	    }
	    
	    .map-placeholder {
		padding: 30px 20px;
	    }
	    
	    .map-icon {
		font-size: 3.5rem;
	    }
	    
	    .map-title {
		font-size: 1.5rem;
	    }
	    
	    .map-text {
		font-size: 1rem;
	    }
	    
	    .btn-map {
		padding: 10px 25px;
		font-size: 0.9rem;
	    }
	    
	    /* Bouton contact */
	    .btn-contact {
		width: 100%;
		justify-content: center;
		padding: 12px 30px;
		font-size: 1rem;
	    }
	    
	    /* Verse card */
	    .verse-card {
		padding: 30px 20px;
		border-radius: 0;
	    }
	    
	    .verse-text {
		font-size: 1.1rem;
	    }
	    
	    .verse-reference {
		font-size: 1rem;
	    }
	}

	/* ==========================================
	   RESPONSIVE - TRÈS PETITS ÉCRANS
	   ========================================== */
	@media (max-width: 480px) {
	    .publications-grid {
		gap: 35px; /* Ajusté à 35px */
	    }
	    
	    /* IMAGE TAILLE NORMALE PETIT MOBILE */
	    .publication-image {
		height: auto;
		max-height: 250px;
	    }
	    
	    .publication-body {
		padding: 12px;
	    }
	    
	    .publication-title {
		font-size: 1rem;
		margin-bottom: 8px;
	    }
	    
	    .publication-excerpt {
		font-size: 0.85rem;
		margin-bottom: 12px;
	    }
	    
	    .publication-meta {
		font-size: 0.75rem;
		gap: 8px;
	    }
	    
	    .btn-read-more {
		font-size: 0.8rem;
	    }
	    
	    /* Map très petits écrans */
	    .map-container {
		height: 250px;
	    }
	    
	    .map-placeholder .map-icon {
		font-size: 30px;
		margin-bottom: 10px;
	    }
	    
	    .map-placeholder .map-title {
		font-size: 1.1rem;
	    }
	    
	    .map-placeholder .map-text {
		font-size: 0.85rem;
		margin-bottom: 15px;
	    }
	    
	    .btn-map {
		padding: 8px 18px;
		font-size: 0.85rem;
	    }
	    
	    .verse-text {
		font-size: 1rem;
		line-height: 1.6;
	    }
	    
	    .verse-reference {
		font-size: 0.9rem;
	    }
	    
	    .worship-schedule-card {
		padding: 15px;
	    }
	    
	    .worship-schedule-card h5 {
		font-size: 1rem;
	    }
	    
	    .worship-schedule-card .time-info {
		font-size: 0.9rem;
	    }
	}

	/* ==========================================
	   DARK MODE (Thème Noir)
	   ========================================== */
	[data-theme="black"] .publication-card {
	    background: var(--medium-bg);
	}

	[data-theme="black"] .publication-title {
	    color: var(--dark-text);
	}

	[data-theme="black"] .publication-excerpt {
	    color: #aaa;
	}

	[data-theme="black"] .no-publications {
	    background: var(--medium-bg);
	}

	[data-theme="black"] .no-publications h3 {
	    color: var(--dark-text);
	}

	[data-theme="black"] .no-publications p {
	    color: #999;
	}
