/**
 * Check List Component
 *
 * Checkmark + label + description list for benefits, features, inclusions.
 * Lighter weight than feature-card - inline list style, not cards.
 *
 * Classes:
 *   .check-list  - Container for check items
 *   .check-item  - Individual item (icon + content)
 *   .check-icon  - Checkmark container
 *   .check-label - Bold label text
 *   .check-desc  - Description text (optional)
 */

/* ==========================================================================
   Check List Container
   ========================================================================== */

.check-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 600px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ==========================================================================
   Check Item
   ========================================================================== */

.check-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.5rem;
	border-radius: 8px;
}

/* ==========================================================================
   Check Icon
   ========================================================================== */

.check-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #fef7f6;
	border-radius: 6px;
	color: var(--wp--preset--color--primary);
}

.check-icon svg {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
}

/* ==========================================================================
   Check Content
   ========================================================================== */

.check-content {
	flex: 1;
	padding-top: 0.125rem; /* Align with icon center */
}

.check-label {
	display: block;
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--wp--preset--color--contrast);
	margin-bottom: 0.25rem;
}

.check-desc {
	display: block;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--text);
}

/* Inline variant: label and desc on same line with em-dash */
.check-item--inline .check-label {
	display: inline;
}

.check-item--inline .check-label::after {
	content: ' — ';
	font-weight: 400;
}

.check-item--inline .check-desc {
	display: inline;
}

/* ==========================================================================
   Mobile Styles
   ========================================================================== */

@media (max-width: 767px) {
	.check-list {
		gap: 1.25rem;
	}

	.check-item {
		padding: 0.375rem;
	}

	.check-icon {
		width: 26px;
		height: 26px;
	}

	.check-icon svg {
		width: 13px;
		height: 13px;
	}

	.check-label {
		font-size: 1rem;
	}
}

