/* ===== قسم الرعاية المنزلية: بدون جافاسكربت، خفيف، متجاوب =====
   عمودان داخل عرض المحتوى العادي للموقع (وليس بعرض الشاشة الكامل):
   نص + زر من جهة، وصورة ببطاقة ذات زوايا دائرية من الجهة الأخرى. */

.alk-homecare{
	--alk-hc-primary: #0860a9;
	--alk-hc-secondary: #e21f35;
	--alk-hc-ink: #14213d;

	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px;
	box-sizing: border-box;
	direction: rtl;

	display: grid;
	grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	align-items: center;
	gap: 48px;
}

.alk-homecare__content{ order: 1; }
.alk-homecare__media{ order: 2; }
.alk-homecare--left .alk-homecare__content{ order: 2; }
.alk-homecare--left .alk-homecare__media{ order: 1; }

.alk-homecare__media{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eef3f8;
}
.alk-homecare__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.alk-homecare__title{
	margin: 0 0 18px;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 800;
	line-height: 1.35;
	color: var(--alk-hc-ink);
}
.alk-homecare__title span{ display: block; }
.alk-homecare__title-accent{ color: var(--alk-hc-primary); }

.alk-homecare__text{
	margin: 0 0 28px;
	font-size: clamp(.98rem, 1.5vw, 1.08rem);
	line-height: 1.85;
	color: #3a4657;
}

.alk-homecare__btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--alk-hc-secondary);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 28px;
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(226,31,53,.32);
	transition: transform .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}
.alk-homecare__btn:hover,
.alk-homecare__btn:focus{
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(226,31,53,.42);
	color: #fff !important;
}
.alk-homecare__btn svg{
	width: 18px;
	height: 18px;
	fill: #fff;
	flex-shrink: 0;
}

/* ===== تجاوب: تابلت / جوال كبير — عمود واحد، الصورة أولاً ثم النص ===== */
@media (max-width: 900px){
	.alk-homecare{
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 36px 20px;
	}
	.alk-homecare__content{ order: 2 !important; }
	.alk-homecare__media{ order: 1 !important; aspect-ratio: 16 / 10; }
}

/* ===== تجاوب: جوال ===== */
@media (max-width: 560px){
	.alk-homecare{ padding: 30px 16px; text-align: center; }
	.alk-homecare__title span{ display: inline; }
	.alk-homecare__title{ margin-bottom: 14px; }
	.alk-homecare__btn{ width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce){
	.alk-homecare__btn{ transition: none; }
}
