/*
Theme Name:   neve-child
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Neve FSE child Theme
 Author:       Eric Sinet
 Author URI:   http://example.com
 Template:     neve-fse
 Version:      1.1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         à compléter en fonction des caractéristiques
 Text Domain:  neve-child
*/

/* === Cartes égales en hauteur === */
.wp-block-query .wp-block-post-template.is-layout-grid {
  align-items: stretch;
}
.wp-block-query .wp-block-post {
  display: flex;
  flex-direction: column;
}
.wp-block-query .wp-block-post > .wp-block-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === Image featured en 1:1 === */
.wp-block-query .wp-block-post-featured-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.wp-block-query .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}