/**
 * 본문에 삽입되는 쿠팡 상품 카드 스타일.
 * 에디터와 발행된 글(프론트엔드) 양쪽에서 동일하게 보이도록 한다.
 */
.coupang-card {
	margin: 1.2em 0;
	max-width: 480px;
}

.coupang-card > a {
	display: flex;
	align-items: stretch;
	gap: 14px;
	padding: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.06 );
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.coupang-card > a:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.1 );
}

.coupang-card__img {
	flex: 0 0 auto;
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 8px;
	background: #f3f4f6;
}

.coupang-card__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}

.coupang-card__name {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: #111827;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.coupang-card__price {
	font-size: 17px;
	font-weight: 700;
	color: #e11d48;
}

.coupang-card__badge {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: #2563eb;
	padding: 2px 8px;
	border-radius: 999px;
}
