jodit-link-preview {
	display: grid;
	grid-template-columns: 120px 1fr;
	width: 480px;
	height: 120px;
	border-radius: 12px;
	overflow: hidden;
	outline: 1px solid #ddd;
	cursor: pointer !important;
	margin: 1px;
	&.no-image {
		grid-template-columns: 1fr;
	}
}

jodit-link-preview-content {
	&.thumbnail {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		border-right: 1px solid #ddd;
	}
	&.contents {
		display: grid;
		grid-template-rows: 1fr 1fr 1fr;
		width: 100%;
		height: 100%;
		padding: 16px 28px;
		.title {
			display: flex;
			align-items: center;
			width: 100%;
			font-size: 18px;
			font-weight: 600;
			line-height: 1.5;
			color: #333;
			overflow: hidden;
			text-decoration: none;
		}
		.description {
			display: flex;
			align-items: center;
			width: 100%;
			font-size: 15px;
			line-height: 1.5;
			color: #666;
			overflow: hidden;
			text-decoration: none;
		}
		.url {
			display: flex;
			align-items: center;
			width: 100%;
			font-size: 12px;
			line-height: 1.5;
			color: #999;
			overflow: hidden;
			text-decoration: underline;
		}
		span {
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
			word-break: break-all;
		}
	}
}
