/**
 * Visitor styles: How to Hire Us — ordered steps ([iw_business_hire_steps] / display HTML binding).
 */

.iw-business-hire-steps {
	box-sizing: border-box;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.iw-business-hire-steps__list {
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ---------------------------------------------------------------------------
 * Optional per-step shells (boxed).
 * ------------------------------------------------------------------------- */

.iw-business-hire-steps--step-boxed:not(.iw-business-hire-steps--skin-default) .iw-business-hire-steps__item {
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.09);
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.iw-business-hire-steps--step-boxed.iw-business-hire-steps--skin-default .iw-business-hire-steps__item {
	box-sizing: border-box;
	padding: 0.75rem 0.95rem;
	margin-bottom: 0.65rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.09);
	background: #fff;
}

.iw-business-hire-steps--step-boxed.iw-business-hire-steps--skin-default .iw-business-hire-steps__item:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
 * Skin: Default — simple ordered list (no badge circles).
 * ------------------------------------------------------------------------- */

.iw-business-hire-steps--skin-default .iw-business-hire-steps__list {
	list-style: decimal;
	padding-left: 1.75em;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__item {
	display: list-item;
	margin: 0 0 0.85rem;
	padding: 0;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__item:last-child {
	margin-bottom: 0;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__content {
	display: block;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__title {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
	margin: 0 0 0.35rem;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__desc {
	font-size: 0.935rem;
	line-height: 1.55;
	opacity: 0.95;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__desc p:first-child {
	margin-top: 0;
}

.iw-business-hire-steps--skin-default .iw-business-hire-steps__desc p:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
 * Skin: Template 1 — numbered badges + shared column CSS variable for vertical + horizontal grids.
 * ------------------------------------------------------------------------- */

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__list {
	counter-reset: iw-hire-step;
	display: grid;
	grid-template-columns: repeat(var(--iw-hire-steps-cols, 3), minmax(0, 1fr));
	align-items: stretch;
	list-style: none;
	padding-left: 0;
	gap: 0.95rem;
}

@media (min-width: 640px) {
	.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__list {
		gap: 1.05rem;
	}
}

@media (max-width: 640px) {
	.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__list {
		grid-template-columns: 1fr;
	}
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	min-width: 0;
	min-height: 0;
	height: 100%;
	counter-increment: iw-hire-step;
	margin: 0;
	padding: 0;
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__item {
	align-items: stretch;
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__row {
	display: flex;
	flex-direction: row;
	flex: 1 1 auto;
	align-items: stretch;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	min-height: 0;
	gap: 0.85rem;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__bullet {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 0.6rem;
	color: var(--iw_branding_white_color, #ffffff);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__bullet {
	align-self: flex-start;
	margin: 0.2rem 0 0;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__item:nth-child(odd) .iw-business-hire-steps__bullet {
	background-color: var(--iw_branding_secondary_color, #4b5563);
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__item:nth-child(even) .iw-business-hire-steps__bullet {
	background-color: var(--iw_branding_tertiary_color, #6366f1);
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__bullet::before {
	content: counter(iw-hire-step);
	display: inline;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__content {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	max-width: 36rem;
	text-align: center;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__content {
	flex: 1 1 auto;
	max-width: none;
	text-align: left;
	align-items: flex-start;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__title {
	display: block;
	text-align: center;
	font-weight: 600;
	margin: 0 0 0.45rem;
	font-size: 1rem;
	line-height: 1.35;
	width: 100%;
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__title {
	text-align: left;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__desc {
	width: 100%;
	text-align: center;
	font-size: 0.935rem;
	line-height: 1.55;
	opacity: 0.95;
}

.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--orient-horizontal .iw-business-hire-steps__desc {
	text-align: left;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__desc p:first-child {
	margin-top: 0;
}

.iw-business-hire-steps--skin-template-1 .iw-business-hire-steps__desc p:last-child {
	margin-bottom: 0;
}

/* Template 1 + Light (`iw-business-hire-steps--variant-light`): discrete white tiles. */
.iw-business-hire-steps--skin-template-1.iw-business-hire-steps--variant-light .iw-business-hire-steps__item {
	box-sizing: border-box;
	min-height: 0;
	padding: 1rem 1.15rem;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.085);
	background-color: #fff;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.065);
	overflow: hidden;
}
