/* =============================================================
   Lucas Why Us Cards — lucas-why-us-cards.css
   ============================================================= */

/* ---- Grid wrapper ---- */
.lwuc-grid {
	box-sizing: border-box;
}

/* ---- Single card ---- */
.lwuc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition:
		background-color  0.4s ease,
		background-image  0.4s ease,
		transform         0.35s ease,
		box-shadow        0.35s ease;
	overflow: hidden;
}

/* ---- Icon ---- */
.lwuc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lwuc-icon img {
	display: block;
	object-fit: contain;
	transition: transform 0.35s ease;
	will-change: transform;
}

/* ---- Title ---- */
.lwuc-title {
	margin: 0;
	transition: color 0.35s ease;
}

/* ---- Separator line ---- */
.lwuc-sep {
	display: block;
	border: none;
	border-radius: 2px;
	flex-shrink: 0;
}

/* ---- Plus button ---- */
.lwuc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	flex-shrink: 0;
	line-height: 1;
	font-weight: 300;
	border: none;
	outline: none;
	transition:
		background-color 0.35s ease,
		color            0.35s ease,
		transform        0.35s ease,
		box-shadow       0.35s ease;
	will-change: transform, background-color;
}

.lwuc-btn:hover {
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ---- Inner content group — vertically centered, fills available space ---- */
.lwuc-card-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	width: 100%;
}

/* =============================================================
   Accessibility — reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
	.lwuc-card,
	.lwuc-icon img,
	.lwuc-title,
	.lwuc-btn {
		transition: none !important;
	}
}
