/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,accessibility-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.4.5.1776170534
Updated: 2026-04-14 14:42:14

*/

/* Générique */
/* ---- Zoom simple sur un bloc entier ---- */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Page d'accueil */
/* Transition sur la colonne entière — SANS box-shadow */
.articles-hover-zoom,
.articles-tilt-left,
.articles-tilt-right {
    transition: transform 0.3s ease;
    transform-origin: top center; /* ← AJOUT : pivot depuis l'épingle */
}

/* Bordure uniquement sur la carte article */
.articles-hover-zoom .kb-post-list-item article,
.articles-tilt-left .kb-post-list-item article,
.articles-tilt-right .kb-post-list-item article {
    border: 2px solid #2d3748;
    border-bottom: 6px solid #2d3748;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* ---- Effet 1 : Zoom ---- */
.articles-hover-zoom:hover {
    transform: scale(1.05);
}
.articles-hover-zoom:hover .kb-post-list-item article {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ---- Effet 2 : Inclinaison gauche ---- */
.articles-tilt-left:hover {
    transform: rotate(-7.5deg) scale(1.03);
}
.articles-tilt-left:hover .kb-post-list-item article {
    box-shadow: -6px 12px 20px rgba(0, 0, 0, 0.15);
}

/* ---- Effet 3 : Inclinaison droite ---- */
.articles-tilt-right:hover {
    transform: rotate(7.5deg) scale(1.03);
}
.articles-tilt-right:hover .kb-post-list-item article {
    box-shadow: 6px 12px 20px rgba(0, 0, 0, 0.15);
}


