.guide-list-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.guide-item {
	display: flex;
	flex-wrap: wrap;
	gap: 0 5px;
	width: 100%;
	align-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.guide-thumb-wrap {
	width: 99px;
	height: 56px;
}
.guide-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.guide-title {
	width: calc(100% - 104px);
}
.guide-title a {
	color: var(--black);
	font-family: var(--d-din);
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	line-height: 16px;
}
.guide-item:hover .guide-title a {
	color: var(--black);
	text-decoration:underline;
}
@media (max-width:1159px) {	
	.guide-thumb-wrap {
		width: 33%;
		height: auto;
	}
	.guide-title {
		width: calc(100% - 35%);
	}
}
