/* Footori Featured Trips v0.5 — .fft- 격리 */
.fft-wrapper {
	--fft-hot: #e8833a;
	--fft-hot-soft: #fdf0e6;
	--fft-ink: #1b2430;
	--fft-muted: #68727f;
	--fft-line: #e6e9ed;
	--fft-accent: #2e7d4f;
	margin: 0 0 26px;
	color: var(--fft-ink);
}
.fft-wrapper .fft-featured__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
}
.fft-wrapper .fft-featured__title::before {
	content: "";
	width: 4px;
	height: 18px;
	border-radius: 2px;
	background: var(--fft-hot);
}
.fft-wrapper .fft-featured__row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 14px;
}
.fft-wrapper .fft-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	border: 1px solid var(--fft-line);
	border-radius: 14px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.fft-wrapper .fft-card:hover {
	transform: translateY(-2px);
	border-color: var(--fft-accent);
	box-shadow: 0 8px 20px rgba(27, 36, 48, 0.09);
}
.fft-wrapper .fft-card__badge {
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--fft-hot-soft);
	color: var(--fft-hot);
	font-size: 11px;
	font-weight: 700;
}
.fft-wrapper .fft-card__name {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.45;
	word-break: keep-all;
}
.fft-wrapper .fft-card__meta {
	font-size: 12.5px;
	color: var(--fft-muted);
}
@media (prefers-reduced-motion: reduce) {
	.fft-wrapper * { transition: none !important; }
}
@media (max-width: 640px) {
	.fft-wrapper .fft-featured__row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 0.7.0: 썸네일 + 배지 하단 배치 ===== */
.fft-wrapper .fft-card__thumb {
	display: block;
	margin: -16px -16px 6px;
	aspect-ratio: 4 / 3;
	background: #f3f4f6;
	overflow: hidden;
	border-radius: 14px 14px 0 0;
}
.fft-wrapper .fft-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}
.fft-wrapper .fft-card:hover .fft-card__thumb img {
	transform: scale(1.04);
}
.fft-wrapper .fft-card__badge--bottom {
	margin-top: auto;   /* 카드 하단 고정 — 제목 시작선 정렬 유지 */
	align-self: flex-start;
}
