/* CARD */
.product-small.box {
	background: var(--color-white);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0,0,0,.08);
	border: 1px solid #eee;
	height: 100%;
}

/* ẢNH */
.product-small .box-image {
	position: relative;
}

.product-small .box-image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

/* NỘI DUNG */
.product-small .box-text {
	padding: 20px;
	text-align: left;
}

/* TIÊU ĐỀ */
.product-title {
	margin: 0 0 18px;
	line-height: 1.4;
}

.product-title a {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-main);
	text-decoration: none;
}

/* THÔNG TIN */
.soha-tour-info {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.soha-tour-info-item {
	flex: 1;
	border: 1.5px solid #d7dde6;
	border-radius: 16px;
	min-height: 50px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.soha-tour-info-item i {
	font-size: 16px;
}

.soha-tour-info-item:first-child i {
	color: var(--color-main);
}

.soha-tour-info-item:last-child i {
	color: var(--color-main);
}

.soha-tour-info-item span {
	font-size: 14px;
	color: var(--color-black);
	text-align: center;
}

/* NÚT */
.soha-tour-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--color-red);
	color: var(--color-white);
	text-decoration: none !important;
	border-radius: 16px;
	padding: 14px;
	font-size: 16px;
	text-align: center;
	transition: .3s;
}

.soha-tour-btn:hover {
	color: var(--color-white);
	background: var(--color-red);
}

.soha-tour-btn i {
	font-size: 15px;
}

/* TABLET */
@media (max-width: 850px) {
	.product-small .box-image img {
		height: 220px;
	}
}

/* MOBILE */
@media (max-width: 549px) {

	.product-small .box-text {
		padding: 15px;
	}

	.product-small .box-image img {
		height: 200px;
	}

	.product-title a {
		font-size: 17px;
	}

	.soha-tour-info {
		gap: 8px;
	}

	.soha-tour-info-item {
		min-height: 56px;
		padding: 8px;
	}

	.soha-tour-info-item span {
		font-size: 13px;
	}

	.soha-tour-btn {
		font-size: 14px;
		padding: 12px;
	}
}