/* 마라톤 준비물 위젯 - 러닝 계산기 위젯과 동일 그리드·카드 스타일 */
.marathon-prep-widget {
	padding: 0;
}

.marathon-prep-widget .marathon-prep-row {
	margin-left: -6px;
	margin-right: -6px;
}
.marathon-prep-widget .marathon-prep-col {
	padding-left: 6px;
	padding-right: 6px;
	margin-bottom: 10px;
}
.marathon-prep-widget .marathon-prep-col:nth-last-child(-n+2) {
	margin-bottom: 0;
}

.marathon-prep-widget .marathon-prep-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 6px 10px !important;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	transition: background 0.2s, border-color 0.2s;
}
.marathon-prep-widget .marathon-prep-card:hover {
	background: #fff;
	border-color: #007bff;
}

.marathon-prep-widget .marathon-prep-inner {
	position: relative;
}

.marathon-prep-widget .marathon-prep-icon {
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.05rem;
	line-height: 1;
	color: #6c757d;
	white-space: nowrap;
}
.marathon-prep-widget .marathon-prep-card:hover .marathon-prep-icon {
	color: #007bff;
}

.marathon-prep-widget .marathon-prep-label {
	display: block;
	font-size: 0.85rem;
	font-weight: bold;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.marathon-prep-widget {
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media (max-width: 575px) {
	.marathon-prep-widget .marathon-prep-col {
		margin-bottom: 8px;
	}
	.marathon-prep-widget .marathon-prep-card {
		padding: 6px 4px !important;
		min-height: 46px;
	}
}
