/**
 * Step Card Component
 *
 * Numbered steps layout (1, 2, 3) with connector line.
 * Used in: How It Works, Service Plans process section.
 *
 * Classes:
 *   .step-grid   - Flex container for step cards
 *   .step-card   - Individual step card
 *   .step-number - Circular number badge
 *   .step-title  - h3 title
 *   .step-desc   - Description paragraph
 */

/* ==========================================================================
   Step Grid Container
   ========================================================================== */

.step-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	max-width: 960px;
	margin: 0 auto 2.5rem;
	position: relative;
	align-items: stretch;
}

/* Connector line between steps (desktop) */
@media (min-width: 768px) {
	.step-grid::before {
		content: '';
		position: absolute;
		top: 56px; /* card padding (24px) + half circle height (32px) */
		left: calc(16.666% + 32px);
		right: calc(16.666% + 32px);
		height: 1px;
		background: var(--wp--preset--color--border);
		border-radius: 2px;
		z-index: 0;
	}
}

/* ==========================================================================
   Step Card
   ========================================================================== */

.step-card {
	flex: 1;
	min-width: 220px;
	max-width: 300px;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.25rem 1.75rem;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--card-radius);
}

/* ==========================================================================
   Step Number Badge
   ========================================================================== */

.step-number {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	font-size: 1.625rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Step Title
   ========================================================================== */

.step-title {
	font-size: 1.1875rem;
	margin-bottom: 0.625rem;
}

/* ==========================================================================
   Step Description
   ========================================================================== */

.step-desc {
	color: var(--wp--preset--color--text);
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0;
}

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

@media (max-width: 767px) {
	.step-grid {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: 0 var(--content-padding-mobile);
	}

	.step-card {
		min-width: 0;
		max-width: 340px;
		width: 100%;
		padding: 1.25rem 1rem 1.5rem;
	}

	.step-number {
		width: 52px;
		height: 52px;
		font-size: 1.375rem;
		margin-bottom: 1rem;
	}
}
