/* CreativeKatta - Our Approach Widget — base structural styles.
   Colors, spacing, typography, and hover states are controlled from the
   Elementor Style tab; this file only handles layout structure so the
   widget behaves responsively out of the box. */

.ck-approach-list {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.ck-approach-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 48px;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	box-sizing: border-box;
	cursor: pointer;
}

.ck-show-divider .ck-approach-item {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.ck-approach-list .ck-approach-item:last-child {
	border-bottom-width: 0;
}

/* Edge-to-edge hover background */
.ck-full-bleed {
	margin-left: -24px;
	margin-right: -24px;
	width: calc(100% + 48px);
}

.ck-approach-number {
	flex: 0 0 60px;
	line-height: 1.2;
}

.ck-approach-content {
	flex: 1 1 auto;
	min-width: 0;
}

.ck-approach-title {
	margin: 0 0 10px;
	line-height: 1.3;
}

.ck-approach-desc {
	margin: 0;
	line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
	.ck-approach-item {
		gap: 32px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.ck-approach-item {
		flex-direction: column;
		gap: 12px;
	}

	.ck-approach-number {
		flex: 0 0 auto;
	}

	.ck-full-bleed {
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}
}
