/* =========================================================================
   Section « Foodtrucks » — thème enfant Divi (plandeaudevieure)
   Couleurs charte : vert #146A60 · orange #e94e1b
   Shortcode [pdvb_foodtrucks] — grille de cartes (classes « pdvft- »).
   ========================================================================= */

.pdvft-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	align-items: stretch;     /* cartes d'une même rangée à la même hauteur */
}

.pdvft-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(45, 42, 50, .12);
}

/* Média (photo) */
.pdvft-media {
	margin: 14px 14px 0;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 11;
}
.pdvft-img,
.pdvft-img--empty {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pdvft-img--empty {
	background: linear-gradient(135deg, #146A60, #0e4f47);
}

/* Corps (texte) */
.pdvft-body {
	padding: 18px 24px 24px;
}
.pdvft-name {
	margin: 0 0 8px;
	color: #2d2a32;
	font-size: clamp(20px, 1rem + 0.7vw, 26px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .3px;
	line-height: 1.2;
}
.pdvft-dates {
	margin: 0 0 6px;
	color: #333;
	font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
	line-height: 1.5;
}

/* Liens (Carte / Site internet) : un par ligne, cliquables */
.pdvft-link {
	display: block;
	color: #146A60;
	font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
	line-height: 1.6;
	text-decoration: none;
	width: fit-content;
}
.pdvft-link:hover,
.pdvft-link:focus-visible {
	color: #e94e1b;
	text-decoration: underline;
}

/* Réseaux sociaux : libellé + icônes cliquables */
.pdvft-socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 6px;
	flex-wrap: wrap;
}
.pdvft-socials-label {
	color: #333;
	font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
	line-height: 1.6;
}
.pdvft-socials-icons {
	display: inline-flex;
	gap: 8px;
}
.pdvft-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #CBE8E2;
	color: #146A60;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pdvft-social svg { fill: currentColor; }
.pdvft-social:hover,
.pdvft-social:focus-visible {
	background: #e94e1b;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 782px) {
	.pdvft-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* =========================================================================
   Composition « Section Foodtrucks » (bandeau + titres + grille)
   Reproduit le bas du Canva : fond crème, « Calendrier des présences » orange,
   « LA TOURNÉE DES » en capitales espacées, wordmark « FOODTRUCKS ».
   ========================================================================= */
.pdvft-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);          /* bandeau pleine largeur */
	background: #fbeedd;                      /* crème (ajustable) */
	padding: 64px 20px;
}
.pdvft-section-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.pdvft-section-kicker {
	color: #e94e1b;
	text-align: center;
	font-weight: 800;
	font-size: clamp(26px, 1.3rem + 1.5vw, 40px);
	line-height: 1.2;
	margin: 0 0 6px;
}
.pdvft-section-eyebrow {
	text-align: center;
	color: #2d2a32;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .35em;
	font-size: clamp(15px, 0.9rem + 0.5vw, 22px);
	line-height: 1.2;
	margin: 0 0 2px;
	padding-left: .35em;                      /* compense l'interlettrage à droite */
}
.pdvft-section-wordmark {
	text-align: center;
	color: #2d2a32;
	/* Police par défaut du thème, en très gras (pas de dépendance externe). */
	text-transform: uppercase;
	font-weight: 800;
	font-size: clamp(40px, 8vw, 92px);
	line-height: 1;
	letter-spacing: .02em;
	margin: 0 0 40px;
}
.pdvft-section .pdvft-grid {
	margin-top: 0;
}
