/* 게시판 상세 페이지 css 작성 */
.link-preview-card {
	display: flex;
	flex-direction: row;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.link-preview-card img {
	width: 30%;
	object-fit: cover;
	padding: 10px;
	box-sizing: border-box;
}

.link-preview-card-content {
	width: 70%;
	padding: 12px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.link-preview-card-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 6px;
}

.link-preview-card-desc {
	font-size: 18px;
	color: #555;
}

.link-preview-card-source {
	font-size: 16px;
	color: #999;
	margin-top: 8px;
}
