/* File: \media\com_easyenroll\css\business.css */
/* Business / Company Account sales page — layout glue only.
   All colors and typography come from global.css / colors.css / component.css. */

/* ========================================
   ALTERNATING TWO-COLUMN FEATURE ROWS
   ======================================== */
.business-feature {
	width: 100%;
	box-sizing: border-box;
}

.business-feature.reverse > div:first-child {
	order: 2;
}

.business-feature.reverse > div:last-child {
	order: 1;
}

.business-feature-copy {
	flex: 1 1 260px;
	order: 2;
	padding-top: 6px
}

/* Inline feature row: copy on the left, screenshot on the right (collapses on mobile). */
.business-feature-inline {
	align-items: flex-start;
	box-sizing: border-box;
	display: flex;
	gap: 24px;
	width: 100%
}

.business-feature-img {
	border-radius: 8px;
	box-shadow: 0px 3px 4px 0px rgb(0 33 74 / 15%);
	box-sizing: border-box;
	height: auto
}

.business-img-wrap-small {
	flex: 0 1 400px;
	max-width: 400px;
	order: 1;
	width: 42%
}

/* ========================================
   ANNUAL REMINDER BAND
   ======================================== */
.business-cta-band {
	margin: 0 auto;
	max-width: 1024px;
}

/* ========================================
   FOOTER CTA — TWO BUTTONS SIDE BY SIDE
   ======================================== */
.business-cta-buttons {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

/* ========================================
   RESPONSIVE — collapse two-column rows on tablet/mobile
   ======================================== */
@media screen and (max-width: 900px) {
	.business-feature {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.business-feature.reverse > div:first-child,
	.business-feature.reverse > div:last-child {
		order: initial;
	}

	.business-feature-inline {
		display: block
	}

	.business-feature-inline .business-img-wrap-small {
		max-width: 100%;
		padding-top: 12px;
		width: 100%
	}

	.business-cta-band {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 600px) {
	.business-cta-buttons {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}
}
