 /* ACCESSIBILITÉ (OBLIGATOIRE POUR LES DATES CACHÉES) */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /* CONTENEUR PRINCIPAL - GLASSMORPHISM */ .iactualite-seo-footer { background: rgba(9, 9, 12, 0.96); backdrop-filter: blur(20px) saturate(120%); -webkit-backdrop-filter: blur(20px) saturate(120%); color: #e8e9ea; padding: 60px 0 20px; margin-top: 80px; position: relative; border-radius: 0px; border-top: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; font-size: 16px; box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05); content-visibility: auto; contain-intrinsic-size: 800px; } /* Effet lumière flottante (discret, calé sur la hauteur réelle du footer plutôt que sur 200% d'un conteneur très haut, pour éviter le voile rouge diffus sur toute la hauteur) */ .iactualite-seo-footer::before { content: ''; position: absolute; top: -20%; left: -50%; width: 200%; height: 60%; background: radial-gradient(circle at 30% 50%, rgba(255, 92, 107, 0.03) 0%, transparent 40%); animation: float 20s ease-in-out infinite; pointer-events: none; z-index: 0; } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(30px, -30px) rotate(120deg); } 66% { transform: translate(-20px, 20px) rotate(240deg); } } /* Grille de fond */ .iactualite-seo-footer::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 0; /* Fondu du quadrillage sur les bords (même effet que le hero) : net au centre, qui s'estompe autour */ mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%); } /* CONTAINER */ .iactualite-seo-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; } .iactualite-seo-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; position: relative; } /* SECTIONS - CARDS */ .iactualite-seo-section { position: relative; padding: 30px; background: rgba(255, 255, 255, 0.02); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .iactualite-seo-section:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 92, 107, 0.3); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } /* Séparateur entre sections */ .iactualite-seo-section::after { content: ''; position: absolute; right: -20px; top: 10%; width: 1px; height: 80%; background: linear-gradient(to bottom, transparent, rgba(255, 92, 107, 0.3) 50%, transparent); } .iactualite-seo-section:last-child::after { display: none; } /* TITRES */ .iactualite-seo-section h3 { color: #ff5c6b; font-size: 1.5em; margin-bottom: 30px; display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.5px; position: relative; padding-bottom: 15px; } .iactualite-seo-section h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, #ff5c6b, transparent); border-radius: 2px; transition: width 0.3s ease; } .iactualite-seo-section:hover h3::after { width: 100%; } .section-icon { font-size: 1.6em; filter: drop-shadow(0 0 10px rgba(255, 92, 107, 0.4)); animation: icon-pulse 3s ease-in-out infinite; } @keyframes icon-pulse { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 92, 107, 0.4)); } 50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255, 92, 107, 0.6)); } } .section-description { font-size: 0.875em; color: #e8e9ea; opacity: 0.7; line-height: 1.6; margin-top: -15px; margin-bottom: 25px; } /* LIENS */ .iactualite-seo-links { list-style: none; padding: 0; margin: 0; } .iactualite-seo-links li { margin-bottom: 15px; } .iactualite-seo-links a { color: #e8e9ea; text-decoration: none; font-size: 0.95em; transition: color 0.3s ease, transform 0.2s ease; display: inline-block; } .iactualite-seo-links a:hover { color: #ffffff; transform: translateX(5px); } /* ARTICLES AVEC MINIATURES */ .iactualite-article-with-thumb { display: flex; align-items: flex-start; gap: 15px; padding: 15px; background: rgba(0, 0, 0, 0.2); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; position: relative; overflow: hidden; } .iactualite-article-with-thumb::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.5s ease; } .iactualite-article-with-thumb:hover::before { left: 100%; } .iactualite-article-with-thumb:hover { background: rgba(255, 92, 107, 0.1); border-color: rgba(255, 92, 107, 0.3); transform: translateX(5px); box-shadow: -5px 0 20px rgba(255, 92, 107, 0.2); } .iactualite-article-thumb { width: 80px; height: 80px; aspect-ratio: 1/1; border-radius: 12px; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255, 92, 107, 0.3); transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); } .iactualite-article-with-thumb:hover .iactualite-article-thumb { transform: scale(1.1) rotate(2deg); border-color: rgba(255, 92, 107, 0.8); box-shadow: 0 8px 24px rgba(255, 92, 107, 0.4); } .iactualite-article-title { flex: 1; line-height: 1.5; font-weight: 600; color: #e8e9ea; transition: color 0.2s; } .iactualite-article-with-thumb:hover .iactualite-article-title { color: #ff5c6b; } /* TAG CLOUD - harmonisé avec le bandeau hero (glassmorphism mono-accent) */ .iactualite-seo-tags { width: 100%; margin-bottom: 40px; padding: 40px; background: rgba(255, 255, 255, 0.02); border-radius: 20px; border: 1px solid rgba(255, 92, 107, 0.25); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .iactualite-seo-tags:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 92, 107, 0.4); } .iactualite-seo-tags::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%); pointer-events: none; } .iactualite-seo-tags h3 { color: #e8e9ea; opacity: 0.9; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0; margin-bottom: 30px; text-align: center; position: relative; z-index: 1; } .iactualite-seo-tags ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; } .iactualite-seo-tags li { margin: 0 !important; } .iactualite-seo-tags li a { display: inline-flex; align-items: center; padding: 10px 20px; background: rgba(255, 92, 107, 0.1); border: 1px solid rgba(255, 92, 107, 0.35); color: #ff5c6b; border-radius: 25px; font-size: 0.9rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .iactualite-seo-tags li a::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%); transition: left 0.5s ease; } .iactualite-seo-tags li a:hover::before { left: 100%; } .iactualite-seo-tags li a::after { content: '✨'; position: absolute; top: 50%; right: -20px; /* On la cache juste un peu à droite */ transform: translateY(-50%); font-size: 0.9em; /* Un tout petit peu plus grand */ opacity: 0; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Effet ressort */ } .iactualite-seo-tags li a:hover::after { right: 12px; opacity: 1; } .iactualite-seo-tags li a:hover { background: #ff5c6b; border-color: #ff5c6b; color: #ffffff; transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgba(255, 92, 107, 0.4); padding-right: 42px; } /* TAG CLOUD THÉMATIQUES */ .ia-topic-cloud { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; } .ia-topic-cloud li { margin: 0 !important; } .ia-topic-cloud a { display: inline-flex; align-items: center; padding: 6px 14px; background: #0f1015; border: 1px solid #2d3748; color: #e2e8f0; border-radius: 20px; text-decoration: none; font-size: 0.85em; font-weight: 500; transition: all 0.2s ease; } .ia-topic-cloud a::before { content: '#'; color: #ff5c6b; margin-right: 4px; font-weight: bold; opacity: 0.8; } .ia-topic-cloud a:hover { background: #ff5c6b; border-color: #ff5c6b; color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); } .ia-topic-cloud a:hover::before { color: #ffffff; } /* COMPTEUR SUR LES TAGS */ .topic-count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 3px 7px; margin-left: 6px; background: rgba(255, 92, 107, 0.15); border-radius: 12px; font-size: 0.7em; font-weight: 700; color: #ff5c6b; border: 1px solid rgba(255, 92, 107, 0.25); transition: all 0.2s ease; } .ia-topic-cloud a:hover .topic-count { background: rgba(255, 255, 255, 0.25); color: #ffffff; border-color: rgba(255, 255, 255, 0.4); transform: scale(1.1); } /* BOUTON CTA EN BAS DE COLONNE */ .topic-cta-wrapper { margin-top: 30px; padding-top: 25px; border-top: 1px dashed rgba(255, 255, 255, 0.08); text-align: center; } .topic-explore-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 24px; background: rgba(255, 92, 107, 0.1); border: 2px solid rgba(255, 92, 107, 0.35); color: #ff5c6b; border-radius: 30px; text-decoration: none; font-size: 0.9em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 15px rgba(255, 92, 107, 0.1); position: relative; overflow: hidden; } .topic-explore-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 92, 107, 0.2); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .topic-explore-btn:hover::before { width: 500px; height: 500px; } .topic-explore-btn:hover { background: #ff5c6b; border-color: #ff5c6b; color: #ffffff; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255, 92, 107, 0.4); } /* Animation pulse subtile */ @keyframes topic-cta-pulse { 0%, 100% { box-shadow: 0 4px 15px rgba(255, 92, 107, 0.1); } 50% { box-shadow: 0 4px 25px rgba(255, 92, 107, 0.2); } } .topic-explore-btn { animation: topic-cta-pulse 3s ease-in-out infinite; } /* --- STATS BAR --- *//* Responsive pour le bouton */@media (max-width: 768px) { .topic-cta-wrapper { margin-top: 25px; padding-top: 20px; } .topic-explore-btn { font-size: 0.85em; padding: 12px 20px; } .topic-stats-bar { gap: 8px; } .topic-stat { padding: 8px 10px; gap: 6px; }}/* GEO STATS BAR */.ia-geo-stats-bar { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.08);}.ia-geo-stat { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; text-decoration: none; transition: background 0.2s, border-color 0.2s; overflow: hidden;}.ia-geo-stat:hover { background: rgba(255, 92, 107, 0.12); border-color: rgba(255, 92, 107, 0.3);}.ia-geo-stat-number { font-size: 1em; font-weight: 700; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}.ia-geo-stat-label { font-size: 0.72em; color: rgba(255, 255, 255, 0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; letter-spacing: 0.4px;}.ia-geo-stat--trending .ia-geo-stat-number { color: #f97316;}@media (max-width: 480px) { .ia-geo-stats-bar { grid-template-columns: 1fr 1fr; } .ia-geo-stat:last-child { grid-column: 1 / -1; }} /* WIDGET GÉO */ .ia-geo-widget { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 92, 107, 0.15); border-left: 4px solid rgba(255, 92, 107, 0.7); padding: 25px; border-radius: 20px; margin-bottom: 40px; gap: 25px; flex-wrap: wrap; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .ia-geo-widget::after { content: ''; position: absolute; top: 0; left: -60%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 92, 107, 0.05), transparent); animation: scan 4s ease-in-out infinite; pointer-events: none; } @keyframes scan { 0%, 100% { left: -60%; } 50% { left: 100%; } } .ia-geo-widget:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 92, 107, 0.35); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .ia-geo-flag-img { width: 60px; height: 45px; aspect-ratio: 4/3; border-radius: 8px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 92, 107, 0.3); border: 3px solid rgba(255, 255, 255, 0.2); flex-shrink: 0; object-fit: cover; transition: all 0.3s ease; } .ia-geo-widget:hover .ia-geo-flag-img { transform: scale(1.1) rotate(5deg); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 92, 107, 0.5); } .ia-geo-content { flex: 1; min-width: 200px; } .ia-geo-title { margin: 0 0 6px 0; color: #fff; font-size: 1.1em; font-weight: 700; letter-spacing: -0.5px; } .ia-geo-desc { margin: 0; opacity: 0.9; font-size: 0.95em; line-height: 1.5; color: #e8e9ea; } .ia-geo-meta-bar { width: 100%; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 8px; } .ia-geo-indicator { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; display: inline-block; box-shadow: 0 0 8px #4ade80; animation: pulse-green 2s infinite; } @keyframes pulse-green { 0% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); } 70% { opacity: 1; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); } 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } } .ia-geo-meta { font-size: 0.75em; opacity: 0.5; font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 1px; color: #e8e9ea; } /* BOUTONS CTA */ .ia-geo-btn, .footer-newsletter-form button { position: relative; padding: 14px 32px; background: linear-gradient(135deg, #ff5c6b 0%, #d44556 100%); color: #ffffff; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 30px; font-weight: 700; font-size: 1em; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; cursor: pointer; overflow: hidden; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 92, 107, 0.3); white-space: nowrap; align-self: center; } .ia-geo-btn::before, .footer-newsletter-form button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .ia-geo-btn:hover::before, .footer-newsletter-form button:hover::before { width: 300px; height: 300px; } .ia-geo-btn:hover, .footer-newsletter-form button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 30px rgba(255, 92, 107, 0.5), 0 0 40px rgba(255, 92, 107, 0.4); border-color: rgba(255, 255, 255, 0.5); color: #ffffff; } @keyframes button-pulse { 0%, 100% { box-shadow: 0 4px 15px rgba(255, 92, 107, 0.3); } 50% { box-shadow: 0 4px 25px rgba(255, 92, 107, 0.6); } } .ia-geo-btn { animation: button-pulse 3s ease-in-out infinite; } /* NEWSLETTER */ .footer-newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; position: relative; } .ia-nl-email-row { display: flex; gap: 0; border-radius: 50px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); } .footer-newsletter-form input[type=email] { flex: 1; min-width: 0; padding: 16px 24px; border: 2px solid rgba(255, 92, 107, 0.3); background: rgba(0, 0, 0, 0.4); color: #fff; font-size: 1em; border-radius: 50px 0 0 50px; outline: none; transition: all 0.3s ease; } .footer-newsletter-form input[type=email]:focus { border-color: #ff5c6b; background: rgba(0, 0, 0, 0.6); box-shadow: inset 0 0 20px rgba(255, 92, 107, 0.2); } .footer-newsletter-form input[type=email]::placeholder { color: rgba(255, 255, 255, 0.5); font-style: italic; } .footer-newsletter-form button { padding: 16px 32px; border: none; border-radius: 0 50px 50px 0; flex-shrink: 0; } /* FRÉQUENCE NEWSLETTER */ .ia-nl-frequency { display: flex; gap: 10px; width: 100%; margin-bottom: 0; } .ia-nl-freq-label { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 9px 8px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05); font-size: 0.85em; transition: all 0.2s; color: inherit; user-select: none; text-align: center; white-space: nowrap; min-width: 0; } .ia-nl-freq-label:hover { border-color: rgba(255, 92, 107, 0.4); background: rgba(255, 92, 107, 0.07); } .ia-nl-freq-label input[type=radio] { accent-color: #ff5c6b; width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; } .ia-nl-freq-label:has(input:checked) { border-color: #ff5c6b; background: rgba(255, 92, 107, 0.12); color: #fff; font-weight: 600; } /* RESSOURCES */ .iactualite-ressources-section h4 { color: #e8e9ea; margin-top: 30px; margin-bottom: 15px; font-weight: 500; border-bottom: 1px solid rgba(255, 92, 107, 0.2); padding-bottom: 10px; font-size: 1.1em; /* AJOUT : Modifie cette valeur selon tes goûts (ex: 1em, 0.9em, 16px...) */ } .ressources-social-links { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; } .ressources-social-links a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255, 92, 107, 0.1); border-radius: 50%; color: #ff5c6b; text-decoration: none; font-size: 1.2em; transition: all 0.3s ease; border: 2px solid rgba(255, 92, 107, 0.2); position: relative; overflow: hidden; } .ressources-social-links a::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: #ff5c6b; transform: translate(-50%, -50%); transition: width 0.4s, height 0.4s; z-index: -1; } .ressources-social-links a:hover::before { width: 100%; height: 100%; } .ressources-social-links a:hover { color: #ffffff; transform: translateY(-5px) rotate(360deg); border-color: #ff5c6b; box-shadow: 0 10px 25px rgba(255, 92, 107, 0.4); } /* FAQ (CORRIGÉ: PAS D'IMBRICATION) */ .ia-footer-faq { margin-top: 15px; padding-top: 20px;}.ia-footer-faq h4 { font-size: 1em; color: #ff5c6b; margin-bottom: 15px;}.ia-faq-item { margin-bottom: 6px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05);}.ia-faq-q { font-weight: 600; font-size: 0.9em; cursor: pointer; color: #f0f2f5; padding: 10px 36px 10px 12px; background: rgba(255, 255, 255, 0.02); position: relative; user-select: none; transition: background 0.2s; list-style: none;}.ia-faq-q:hover { background: rgba(255, 92, 107, 0.08);}.ia-faq-q::after { content: '+'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 1.2em; color: #ff5c6b; transition: transform 0.25s ease; line-height: 1;}.ia-faq-item.open .ia-faq-q::after { transform: translateY(-50%) rotate(45deg);}.ia-faq-a { font-size: 0.85em; opacity: 0.8; color: #f0f2f5; display: block; max-height: 0; overflow: hidden; padding: 0 12px; transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease; opacity: 0;}.ia-faq-item.open .ia-faq-a { max-height: 200px; padding: 8px 12px 12px; opacity: 0.8;} /* BREADCRUMB */ .ia-footer-breadcrumb { font-size: 0.85em; color: #e8e9ea; opacity: 0.6; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; } .ia-footer-breadcrumb a { color: #e8e9ea; text-decoration: none; transition: color 0.2s; } .ia-footer-breadcrumb a:hover { color: #ff5c6b; } .ia-footer-breadcrumb span { color: #ff5c6b; } /* BOTTOM */ .iactualite-seo-bottom-container { max-width: 1300px; margin: 60px auto 0; padding: 40px 20px 0; border-top: 1px solid rgba(255, 92, 107, 0.2); position: relative; z-index: 1; } .iactualite-seo-bottom { text-align: center; } .iactualite-author-trust-section { margin: 0; padding: 0; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; text-align: left; } .author-blurb { position: relative; display: flex; align-items: center; gap: 20px; flex: 2; min-width: 300px; } .author-photo { width: 70px; height: 70px; aspect-ratio: 1/1; border-radius: 50%; object-fit: cover; border: 2px solid #ff5c6b !important; box-shadow: 0 0 10px rgba(255, 92, 107, 0.5), 0 0 20px rgba(255, 92, 107, 0.3) !important; position: relative; z-index: 2; transition: all 0.3s ease; } .author-photo:hover { border-color: #ffffff !important; box-shadow: 0 0 15px rgba(255, 92, 107, 0.7), 0 0 30px rgba(255, 92, 107, 0.5), inset 0 0 10px rgba(255, 92, 107, 0.2) !important; transform: scale(1.05); } .author-photo::before { content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px; border-radius: 50%; border: 1px solid rgba(255, 92, 107, 0.3); box-shadow: 0 0 15px rgba(255, 92, 107, 0.3); z-index: -1; } .author-blurb p { margin: 0; color: #e8e9ea; opacity: 0.7; font-size: 0.875em; line-height: 1.6; } .author-blurb p a { color: #ff5c6b; text-decoration: underline; transition: opacity 0.2s; } .author-blurb p a:hover { opacity: 0.8; } .trust-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 25px; flex: 1; min-width: 250px; } .trust-links a { color: #e8e9ea; opacity: 0.7; text-decoration: none; font-size: 0.875em; transition: all 0.2s ease-in-out; padding-bottom: 2px; border-bottom: 1px solid transparent; } .trust-links a:hover { color: #ffffff; border-bottom-color: rgba(255, 92, 107, 0.2); opacity: 1; transform: translateY(-1px); } /* COPYRIGHT */ .iactualite-copyright { color: #e8e9ea; opacity: 0.5; font-size: 0.8125em; margin-top: 40px; padding-top: 25px; border-top: 1px solid rgba(255, 92, 107, 0.2); } .iactualite-copyright > div { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; } .iactualite-copyright span { margin: 0 5px; } .ia-back-to-top { position: absolute; right: 0; top: 25px; /* Aligné avec le padding du conteneur */ background: #000000; color: #ff5c6b; text-decoration: none; font-weight: 600; border: 1px solid rgba(255, 92, 107, 0.2); padding: 8px 16px; border-radius: 20px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 5px; z-index: 10; } .ia-back-to-top:hover { background: #ff5c6b; color: #ffffff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 92, 107, 0.3); } .ia-back-to-top:focus { outline: 2px solid #fff; outline-offset: 2px; } /* LANGUAGE SWITCHER */ .ia-language-switcher { display: inline-flex; gap: 10px; align-items: center; background: rgba(255, 255, 255, 0.05); padding: 8px 12px; border-radius: 20px; margin-top: 10px; } .ia-language-switcher a { color: inherit; text-decoration: none; padding: 4px 8px; border-radius: 12px; transition: all 0.2s; font-size: 0.9em; opacity: 0.7; } .ia-language-switcher a:hover { opacity: 1; background: rgba(255, 255, 255, 0.1); } .ia-language-switcher .active { font-weight: 700; padding: 4px 8px; background: rgba(255, 92, 107, 0.2); border-radius: 12px; font-size: 0.9em; opacity: 1; } /* RESPONSIVE */ @media (max-width: 1024px) { .iactualite-seo-content { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .iactualite-seo-section::after { display: none; } } @media (max-width: 768px) { .iactualite-seo-footer { padding: 40px 0 20px; border-radius: 0; margin-top: 60px; } .iactualite-seo-content { grid-template-columns: 1fr; gap: 25px; } .iactualite-seo-section { padding: 25px 20px; } .ia-geo-widget { flex-direction: column; text-align: center; gap: 15px; } .ia-geo-content { min-width: 100%; } .ia-geo-btn { width: 100%; text-align: center; display: block; } .ia-geo-meta-bar { justify-content: center; } .iactualite-seo-tags { padding: 30px 20px; border-radius: 15px; } .iactualite-seo-tags h3 { font-size: 1.2rem; margin-bottom: 20px; } .iactualite-seo-tags ul { gap: 10px; } .iactualite-seo-tags li a { padding: 8px 16px; font-size: 0.85rem; } .author-blurb { flex-direction: column; text-align: center; min-width: 100%; } .trust-links { grid-template-columns: 1fr; text-align: center; min-width: 100%; } .iactualite-copyright > div { flex-direction: column; text-align: center; } .footer-newsletter-form { flex-direction: column; border-radius: 12px; } .footer-newsletter-form input[type=email] { border-radius: 12px 12px 0 0; border-bottom: none; } .footer-newsletter-form button { border-radius: 0 0 12px 12px; } } @media (max-width: 480px) { .iactualite-seo-section { padding: 20px 15px; } .iactualite-seo-section h3 { font-size: 1.2em; } .iactualite-article-thumb { width: 60px; height: 60px; } .iactualite-seo-tags { padding: 25px 15px; } .iactualite-seo-tags h3 { font-size: 1.1rem; margin-bottom: 18px; } .iactualite-seo-tags li a { padding: 6px 14px; font-size: 0.8rem; } .ia-back-to-top { margin-left: 0; margin-top: 10px; display: block; } } /* ACCESSIBILITY */ *:focus-visible { outline: 2px solid #ff5c6b; outline-offset: 2px; } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } /* TEMPS DE LECTURE */ .stat-reading { color: #ff5c6b; text-shadow: 0 0 10px rgba(255, 92, 107, 0.5); } .ia-reading-time { background: rgba(255, 92, 107, 0.05); border-color: rgba(255, 92, 107, 0.2); } .ia-reading-time:hover { background: rgba(255, 92, 107, 0.12); border-color: rgba(255, 92, 107, 0.45); } /* === BOUTON DE PARTAGE === */.ia-share-section { width: 100%; text-align: center; padding: 20px 0 0; margin-bottom: 0;}.ia-share-label { font-size: 0.78em; font-weight: 600; color: #e8e9ea; margin: 0 0 12px 0; text-transform: uppercase; letter-spacing: 1px; opacity: 0.45;}.ia-share-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px;}.ia-share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px; border-radius: 10px; font-size: 0.83em; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.25s ease; letter-spacing: 0.3px; font-family: inherit;}.ia-share-copy { grid-column: 1 / -1;}.ia-share-facebook { background: rgba(24, 119, 242, 0.12); border: 1px solid rgba(24, 119, 242, 0.35); color: #4a9eff;}.ia-share-facebook:hover { background: rgba(24, 119, 242, 0.25); border-color: rgba(24, 119, 242, 0.7); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);}.ia-share-twitter { background: rgba(29, 161, 242, 0.10); border: 1px solid rgba(29, 161, 242, 0.3); color: #4fc3f7;}.ia-share-twitter:hover { background: rgba(29, 161, 242, 0.22); border-color: rgba(29, 161, 242, 0.6); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29, 161, 242, 0.3);}.ia-share-linkedin { background: rgba(0, 119, 181, 0.10); border: 1px solid rgba(0, 119, 181, 0.3); color: #5ba4cf;}.ia-share-linkedin:hover { background: rgba(0, 119, 181, 0.22); border-color: rgba(0, 119, 181, 0.6); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);}.ia-share-whatsapp { background: rgba(37, 211, 102, 0.10); border: 1px solid rgba(37, 211, 102, 0.3); color: #4ade80;}.ia-share-whatsapp:hover { background: rgba(37, 211, 102, 0.22); border-color: rgba(37, 211, 102, 0.6); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);}.ia-share-copy { background: rgba(255, 92, 107, 0.08); border: 1px solid rgba(255, 92, 107, 0.3); color: #ff5c6b;}.ia-share-copy:hover { background: rgba(255, 92, 107, 0.2); border-color: rgba(255, 92, 107, 0.7); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 92, 107, 0.3);}.ia-share-copy.ia-copied { background: rgba(74, 222, 128, 0.15); border-color: rgba(74, 222, 128, 0.5); color: #4ade80;}@media (max-width: 480px) { .ia-share-buttons { gap: 6px; } .ia-share-btn { padding: 9px 6px; font-size: 0.80em; }}/* === /BOUTON DE PARTAGE === */ /* SCORE DE FRAÎCHEUR (FRESHNESS BADGE) */ .iactualite-article-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; } .ia-freshness-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72em; font-weight: 600; letter-spacing: 0.3px; padding: 2px 8px; border-radius: 20px; width: fit-content; text-decoration: none; white-space: nowrap; transition: opacity 0.2s ease; } .ia-freshness-badge::before { content: '⏱'; font-size: 0.9em; } /* Rouge vif : < 2h (très récent — signal fort crawler) */ .ia-fresh-hot { background: rgba(239, 68, 68, 0.18); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.35); box-shadow: 0 0 6px rgba(239, 68, 68, 0.2); animation: freshpulse 2.5s ease-in-out infinite; } @keyframes freshpulse { 0%, 100% { box-shadow: 0 0 4px rgba(239, 68, 68, 0.15); } 50% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); } } /* Orange : 2h–24h */ .ia-fresh-today { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); } /* Vert : 1j–7j */ .ia-fresh-week { background: rgba(34, 197, 94, 0.13); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.28); } /* Bleu : 7j–30j */ .ia-fresh-month { background: rgba(59, 130, 246, 0.12); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.25); } /* Gris : > 30j (ancien) */ .ia-fresh-old { background: rgba(148, 163, 184, 0.1); color: #94a3b8; border: 1px solid rgba(148, 163, 184, 0.2); } /* ------------------------------------------------------------------ */ /* LAZY-LOADING — squelettes de chargement */ /* ------------------------------------------------------------------ */ .ia-lazy-block { min-height: 60px; } .ia-skeleton--geo { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: rgba(255,255,255,.04); border-radius: 12px; margin-bottom: 20px; } .ia-skeleton-flag { width: 48px; height: 36px; background: rgba(255,255,255,.1); border-radius: 4px; flex-shrink: 0; animation: ia-shimmer 1.4s infinite; } .ia-skeleton-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; } .ia-skeleton-line { height: 12px; background: rgba(255,255,255,.1); border-radius: 6px; animation: ia-shimmer 1.4s infinite; } .ia-skeleton-list { list-style: none; padding: 0; margin: 0; } .ia-skeleton-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); } .ia-skeleton-item .ia-skeleton-line { height: 14px; } @keyframes ia-shimmer { 0% { opacity: .5; } 50% { opacity: 1; } 100% { opacity: .5; } } 