/* ========== Dedicated Placement Support (homepage style) ========== */
.asmorix-place {
	--ap-blue: #0c5adb;
	--ap-navy: #041424;
	--ap-muted: #4b5563;
	--ap-yellow: #ffd200;
	--ap-font: "Nunito", "Poppins", sans-serif;
	--ap-display: "Rajdhani", "Nunito", sans-serif;
	position: relative;
	padding: 48px 0 70px;
	background: #fff;
	font-family: var(--ap-font);
	color: var(--ap-navy);
}

.asmorix-place__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.asmorix-place__row-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 48px;
	align-items: center;
}

.asmorix-place__content {
	position: relative;
	padding: 8px 0 8px 0;
}

.asmorix-place__title-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.asmorix-place__icon {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ap-blue);
	box-shadow: 0 8px 18px rgba(12, 90, 219, 0.22);
}

.asmorix-place__icon svg {
	width: 22px;
	height: 22px;
}

.asmorix-place__heading {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--ap-display);
	font-size: clamp(28px, 2.8vw, 34px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ap-navy);
}

.asmorix-place__text {
	position: relative;
	z-index: 1;
	margin: 0 0 24px;
	max-width: 560px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--ap-muted);
}

.asmorix-place__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 26px;
	padding: 18px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid #e3edf8;
	box-shadow: 0 10px 24px rgba(4, 20, 36, 0.05);
}

.asmorix-place__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 4px 8px;
}

.asmorix-place__stat-value {
	font-family: var(--ap-display);
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: var(--ap-blue);
}

.asmorix-place__stat-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--ap-navy);
}

.asmorix-place__btn {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 220px;
	min-height: 50px;
	padding: 12px 20px;
	border-radius: 10px;
	background: var(--ap-yellow);
	border: 1px solid var(--ap-yellow);
	color: var(--ap-navy) !important;
	font-family: var(--ap-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	box-shadow: 4px 4px 0 rgba(4, 20, 36, 0.16);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.asmorix-place__btn-arrow {
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
}

.asmorix-place__btn:hover {
	background: var(--ap-navy);
	border-color: var(--ap-navy);
	color: var(--ap-yellow) !important;
	box-shadow: 5px 5px 0 rgba(4, 20, 36, 0.2);
	transform: translateY(-1px);
}

.asmorix-place__media {
	position: relative;
	padding: 14px 14px 14px 0;
}

.asmorix-place__media-accent {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 28px;
	left: 28px;
	border-radius: 18px;
	background: linear-gradient(145deg, #0c5adb 0%, #3b82f6 100%);
	box-shadow: 0 16px 34px rgba(12, 90, 219, 0.18);
}

.asmorix-place__media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: 18px;
	border: 4px solid #fff;
	box-shadow: 0 18px 36px rgba(4, 20, 36, 0.12);
}

@media (max-width: 991px) {
	.asmorix-place__row-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.asmorix-place__media img {
		height: 280px;
	}
}

@media (max-width: 767px) {
	.asmorix-place {
		padding: 40px 0 54px;
	}
	.asmorix-place__inner {
		width: min(100% - 28px, 1180px);
	}
	.asmorix-place__stats {
		grid-template-columns: 1fr;
	}
	.asmorix-place__media img {
		height: 240px;
	}
	.asmorix-place__btn {
		width: 100%;
		min-width: 0;
	}
}
