/*
|--------------------------------------------------------------------------
| ROUTES POPULAIRES
|--------------------------------------------------------------------------
*/

.sama-voyage-routes{

	padding:90px 0;

	background:#f8fafc;

}

.sama-voyage-section-header{

	display:flex;

	justify-content:space-between;

	align-items:center;

	margin-bottom:45px;

}

.sama-voyage-section-header h2{

	font-size:48px;

	font-weight:800;

	color:#111827;

	margin:0;

	line-height:1.2;

}

.sama-voyage-routes-grid{

	display:grid;

	grid-template-columns:repeat(5,minmax(240px,1fr));

	gap:26px;

	align-items:start;

}

.sama-route-card{

	background:#fff;

	border-radius:24px;

	overflow:hidden;

	box-shadow:0 18px 45px rgba(0,0,0,.08);

	transition:.35s;

}

.sama-route-card:hover{

	transform:translateY(-8px);

	box-shadow:0 28px 60px rgba(0,0,0,.16);

}

.sama-route-image{

	position:relative;

	width:100%;

	height:180px;

	min-height:180px;

	max-height:180px;

	overflow:hidden;

	background:#f3f4f6;

}

.sama-route-image img{

	width:100%;

	height:100%;

	display:block;

	object-fit:cover;

	object-position:center center;

	transition:transform .35s ease;

}

.sama-route-card:hover .sama-route-image img{

	transform:scale(1.05);

}

.sama-route-badge{

	position:absolute;

	right:16px;

	bottom:16px;

	background:#59d33a;

	color:#fff;

	font-size:13px;

	font-weight:700;

	padding:7px 16px;

	border-radius:50px;

	box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.sama-route-content{

	padding:22px;

}

.sama-route-content h3{

	font-size:17px;

	font-weight:700;

	line-height:1.45;

	color:#1f2937;

	margin:0 0 16px;

	min-height:52px;

}

.sama-route-label{

	font-size:14px;

	font-weight:500;

	color:#6b7280;

	margin:0 0 6px;

}

.sama-route-price{

	font-size:18px;

	font-weight:800;

	color:#24a83d;

	margin:0 0 18px;

	line-height:1.3;

}

.sama-route-meta{

	display:flex;

	justify-content:space-between;

	align-items:center;

	font-size:15px;

	color:#6b7280;

	margin-bottom:22px;

	padding-bottom:18px;

	border-bottom:1px solid #ececec;

}

.sama-route-button{

	display:block;

	width:100%;

	text-align:center;

	text-decoration:none;

	background:#0d7d21;

	color:#fff;

	font-size:16px;

	font-weight:700;

	padding:15px;

	border-radius:12px;

	transition:.3s;

}

.sama-route-button:hover{

	background:#0b681b;

	color:#fff;

}

@media (max-width:1400px){

	.sama-voyage-routes-grid{

		grid-template-columns:repeat(4,1fr);

	}

}

@media (max-width:1100px){

	.sama-voyage-routes-grid{

		grid-template-columns:repeat(3,1fr);

	}

}

@media (max-width:768px){

	.sama-voyage-routes-grid{

		grid-template-columns:1fr;

	}

	.sama-voyage-section-header h2{

		font-size:34px;

	}

}