/*
Theme Name: Touch Trainings Child
Template: listinghive
Description: Thème enfant pour Touch Trainings
Version: 1.0
*/

/* ===== VENDOR (ÉCOLE) ===== */
.hp-vendor__section {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f9f9f9;
	border-radius: 8px;
}

.hp-vendor__section h3 {
	margin-top: 0;
	color: #2c3e50;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.hp-vendor__section h3 i {
	margin-right: 0.5rem;
	color: #3498db;
}

/* Contact */
.hp-vendor__contact-item {
	margin: 0.8rem 0;
	padding-left: 1.5rem;
	line-height: 1.6;
}

.hp-vendor__contact-item i {
	margin-right: 0.5rem;
	color: #3498db;
	width: 20px;
	display: inline-block;
}

/* Map */
.hp-vendor__map {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Events Grid - 2 colonnes */
.hp-vendor__events-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.hp-vendor__events-grid {
		grid-template-columns: 1fr;
	}
}

.hp-vendor__event-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.2s, box-shadow 0.2s;
}

.hp-vendor__event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hp-event-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.hp-event-card__content {
	padding: 1.2rem;
}

.hp-event-card__title {
	margin: 0 0 0.8rem 0;
	font-size: 1.1rem;
}

.hp-event-card__title a {
	color: #2c3e50;
	text-decoration: none;
}

.hp-event-card__title a:hover {
	color: #3498db;
}

.hp-event-card__dates,
.hp-event-card__location {
	font-size: 0.9rem;
	color: #666;
	margin: 0.4rem 0;
}

.hp-event-card__dates i,
.hp-event-card__location i {
	color: #3498db;
	margin-right: 0.4rem;
	width: 16px;
	display: inline-block;
}

.hp-event-card__excerpt {
	font-size: 0.9rem;
	color: #666;
	margin: 0.8rem 0;
	line-height: 1.5;
}

.hp-event-card__button {
	display: inline-block;
	margin-top: 0.8rem;
	padding: 0.6rem 1.2rem;
	background: #3498db;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.9rem;
	transition: background 0.2s;
}

.hp-event-card__button:hover {
	background: #2980b9;
	color: white;
}

/* Image école */
.hp-vendor__image {
	margin-bottom: 1.5rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hp-vendor__image img {
	width: 100%;
	height: auto;
	display: block;
}