/* ============================================
   Custom embed style – Polémia
   ============================================ */

.wp-embedded-content {
  display: block;
  width: 100% !important; /* S'adapte à la largeur du conteneur */
  max-width: 100%;
  border: none;
  border-radius: 5px; /* Coins arrondis élégants */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Ombre douce */
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Effet subtil au survol */
.wp-embedded-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.wp-embed-featured-image.rectangular {
	margin: -25px -25px 25px;
}

/* This specificity is needed to overwrite the defaults. */
p.wp-embed-heading {
	/* CSS logical properties are not used by the default embed stylesheet. */
	margin-bottom: 10px;
}

.wp-embed-footer {
	margin: 25px -25px -25px;
	padding: 25px;
	background: #fafafa;
}

/* Supprime le pictogramme de partage dans les embeds */
.wp-embed-meta {
  display: none!important;
}