.bts-2631-wrapper {
	font-family: inherit;
	padding: 40px 15px;
	max-width: 1200px;
	margin: 0 auto;
}

.bts-2631-header {
	text-align: center;
	margin-bottom: 40px;
}

.bts-2631-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 10px 0;
}

.bts-2631-subtitle {
	font-size: 18px;
	color: #7f8c8d;
	margin: 0;
}

.bts-2631-cards-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

@media (min-width: 992px) {
	.bts-2631-cards-container {
		flex-direction: row;
	}
}

.bts-2631-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	overflow: hidden;
	flex: 1;
	transition: transform 0.3s ease;
}

.bts-2631-card:hover {
	transform: translateY(-5px);
}

@media (min-width: 768px) {
	.bts-2631-card {
		flex-direction: row;
	}
	
	.bts-2631-layout-right {
		flex-direction: row-reverse;
	}
}

.bts-2631-image-side {
	flex: 0 0 40%;
	position: relative;
	min-height: 200px;
}

.bts-2631-image-side img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bts-2631-content-side {
	flex: 0 0 60%;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.bts-2631-route {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 15px 0;
}

.bts-2631-details {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #95a5a6;
}

.bts-2631-times-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px;
}

.bts-2631-time-row {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bts-2631-badge {
	background-color: #e8f8f5;
	color: #27ae60;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.bts-2631-time-text {
	font-size: 15px;
	color: #34495e;
	font-weight: 500;
}

.bts-2631-btn {
	display: inline-block;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	transition: background-color 0.3s;
	margin-top: auto;
}

.bts-2631-btn:hover {
	background-color: #2980b9;
	color: #fff;
}