ul.service-card-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: start;
	list-style: none;
	margin: 0;
	padding: 0;
	
}

ul.service-card-list li {
	width: 100%;
}

.tour-card {
	width: 100%;
	overflow: hidden;
}

.tour-image {
	width: 100%;
	display: block;
}

.tour-content {
	padding: 16px 0;
	background-color: #fff;
}

.tour-card-img{
	position: relative;
	overflow: hidden;
}
.tour-card-img:before {
    content: "";
    display: block;
    position: static;
    width: 100%;
    padding-top: calc(308 / 414 * 100%);
}
.tour-card-img>* {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    object-fit: cover;
	object-position: center center;
    top: 0;
}


.tour-title {
	/* font-family: var(--theme-font-p_font-family); */
	font-family: span,serif;
	font-size: 1.25rem;
	margin: 0 0 4px;
	font-weight:600;
	color: #000;
}

.tour-description {
	margin: 0;
	color: #555;
	font-size: 0.95rem;
}

@media only screen and (min-width: 1024px) {
	ul.service-card-list li {
		width: calc(50% - 10px);
	}
	
	.tour-title {
		margin: 0 0 8px;
	}
}


@media only screen and (min-width: 1200px) {
	ul.service-card-list li {
		width: calc(33% - 10px);
	}
}