/*
Theme Name:  Listeo ChildTheme
Theme URI: http://listeo.pro
Author: Purethemes
Author URI: http://themeforest.net/user/purethemes
Description: Directory WordPress Theme by Purethemes
Version: 1.0
License: ThemeForest
License URI: http://themeforest.net/licenses
Text Domain: listeo
Domain Path: /languages/
Tags: light, responsive-layout, post-formats, theme-options, translation-ready, two-columns
Template:  listeo
*/

.employees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* Tablette : 2 colonnes */
@media (max-width: 1024px) {
    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile : 1 colonne */
@media (max-width: 640px) {
    .employees-grid {
        grid-template-columns: 1fr;
    }
}

.employee-card {
	background: #fff;
	overflow: hidden;
	text-align:center;
}

.employee-card:hover {
	background: #F5F5F5;
}

.employee-image {
	width: 150px;
	height: 150px;
	object-fit: cover;
	background: #f0f0f0;
	border-radius:50%;
}

.employee-content {
	padding: 20px;
}

.employee-name {
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 10px 0;
	color: #333;
}

.employee-description {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.employee-booking-btn {
	display: inline-block;
	background: #164875;
	color: white;
	padding: 5px 0;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.employee-booking-btn:hover {
	background: #164875;
}