/*
Theme Name: Theeme thaetre
Theme URI: http://example.com
Author: Votre Nom
Author URI: http://example.com
Description: Thème WordPress minimaliste pour démarrer
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mon-theme
*/

/* Reset margin et padding globaux */
html {
  margin-top: 0 !important;
  padding: 0;
}

body {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
}

header,
footer {
  background-color: #fff;
  color: #000;
  /* padding: 20px; */
}
/* Font */
h1{font-size: clamp(24px, 4vw, 36px);}
h2{font-size: clamp(20px, 4vw, 32px);font-weight:bold;}
h3{font-size: clamp(16px, 4vw, 28px);}
p{font-size: clamp(18px, 4vw, 20px);}

article > a {
  color: #000!important;
}

a:hover {
  text-decoration: underline;
font-weight:bold;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

.btn-article {
  padding: 10px;
  border: 1px solid #87aeba;
  border-radius: 30px;
  cursor: pointer;
  background-color: #fff;
  font-weight: 550;
  justify-content: center;
  align-items: center;
  display: flex;
}

.m-top {
  margin-top: 100px;
}

.m-bottom {
  margin-bottom: 100px;
}

/* Slider home */
.chantier-banner{
	height:500px;
}

.wp-block-pullquote blockquote{
  padding: 60px !important;
  margin: 0 !important;
  background-color: #fff !important;
  border: 2px solid #4D7193 !important;
}

/* style article card */
/* Card wrapper */
figure.cards-horizontal.wp-block-embed{
  background: #fff;
  border-radius: 18px;
  border: 2px solid #4D7193;
  padding: 14px;
  margin: 30px 0;
  overflow: hidden; /* important pour arrondis */
}

/* Iframe (contenu de l'embed) */
figure.cards-horizontal.wp-block-embed iframe{
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 14px;
  display: block;
}

/* Si WP affiche un aperçu non-iframe (rare selon config) */
figure.cards-horizontal.wp-block-embed .wp-block-embed__wrapper{
  border-radius: 14px;
  overflow: hidden;
}