a.card{
	text-decoration: none;
}
.card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.card .card-map{
	width: 276px;
	min-width: 276px;
	height: 276px;
	border:3px solid var(--border-color);
	z-index: 1;
	background-position: center;
	background-size: cover;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.16);
}

.card .card-map-content{
	background-color: white;
	padding: 15px;
	width: 100%;
	padding-left: 50px;
	margin-left: -30px;
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card .card-map-content span{
	font-size: 13px;
	font-weight: 400;
	color: var(--default-color);
	font-family: var(--primary-font);
	margin-bottom: 15px;
}
.card .card-map-content h2{
	font-size: 29px;
	font-weight: 700;
	color: var(--default-color);
	margin: 0px;
	padding: 0px;
	margin-bottom: 15px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-height: 70px;
    -webkit-box-orient: vertical; 
}
.card .card-map-content p {
	margin: 0px;
	padding: 0px;
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--default-color);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; 
    max-height: 88px; 
}

@media all and (max-width: 768px) {
	.card{
		flex-direction: column;
		justify-content: center;
	}
	.card .card-map-content{
		margin-left: 0px;
		margin-top: -30px;
		padding: 15px;
	}
}

/*vertical*/
.card.vertical{
	margin-top: 30px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.card.vertical .card-map{
	width: 352px;
}

.card.vertical .card-map-content{
	width: 352px;
	margin: 0px 0px 0px auto;
	padding: 15px;
	margin-top: -40px;
	max-width: 400px;
	z-index: 2;
}
.card.vertical .card-map-content p{
	-webkit-line-clamp: 5;
    -webkit-box-orient: vertical; 
    max-height: 107px;
}

.card.small{
	width: 100%;
}
.card.small .card-map{
	width: 120px;
	height: 120px;
	min-width: 120px;
	border-width: 1px !important;
}
.card.small .card-map-content{
	width: 100%;
	margin-top: 15px;
	height: auto !important;
	box-shadow:  0px 5px 3px rgba(106,115,147,.16);
}
.card.small .card-map-content h2{
	font-size: 22px;
}
.card-h{
	min-height: 247px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-h img{
	height: 100px;
}