/* Omar Training Areas - single card layout to match provided design */

.omar-training-card {
	background-color: #ffffff;
	border-radius: 22px;
	box-shadow: 0 18px 35px rgba(180, 116, 84, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.8);
	text-align: right;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
	display: block;
	text-decoration: none;
	color: inherit;
}

/* When card is a link, remove default link styling */
a.omar-training-card {
	color: inherit;
	text-decoration: none;
}

a.omar-training-card:hover,
a.omar-training-card:focus,
a.omar-training-card:visited {
	color: inherit;
	text-decoration: none;
}

.omar-training-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: #fff3e3;
	color: #e38219;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline-end: 0;
	margin-bottom: 18px;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

/* Right layout: icon next to title */
.omar-icon-layout-right .omar-title-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 10px;
	flex-direction: row-reverse; /* Reverse so icon (2nd in HTML) appears on right visually */
}

.omar-icon-layout-right .omar-title-icon-wrapper .omar-training-card-title {
	margin-bottom: 0;
	flex: 1;
	text-align: right;
	line-height: 1.2;
}

.omar-icon-layout-right .omar-icon-inline {
	margin-bottom: 0;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.omar-training-card-icon i,
.omar-training-card-icon svg {
	color: #e38219;
	fill: #e38219;
	width: 26px;
	height: 26px;
}

.omar-training-card-title {
	color: #4b1832;
	font-size: 1.05rem;
	margin-bottom: 10px;
}

.omar-training-card-description {
	color: #9b7d8f;
	font-size: 0.9rem;
	line-height: 1.8;
}

.omar-training-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 45px rgba(180, 116, 84, 0.2);
}

.omar-training-card:hover .omar-training-card-icon {
	background-color: #e38219;
	transform: scale(1.06);
}

.omar-training-card:hover .omar-training-card-icon i,
.omar-training-card:hover .omar-training-card-icon svg {
	color: #ffffff;
	fill: #ffffff;
}

@media (max-width: 767px) {
	.omar-training-card {
		border-radius: 18px;
	}
}

