/* luach-eruim.css — scoped to .le-wrap */
.le-wrap {
	--le-green: #7d9581;
	--le-green-dark: #6b8570;
	--le-purple: #4b2a7b;
	--le-teal: #3e9c8b;
	--le-lilac: #e6dcf7;
	--le-lilac-soft: #f2ecfb;
	--le-text: #4a4a4a;
	--le-card-bg: #fbfaf7;
	--le-radius: 24px;
	--le-shadow: 0 10px 30px rgba(75, 42, 123, 0.10);
	display: flex;
	flex-direction: row;
	gap: 32px;
	justify-content: center;
	align-items: stretch;
	direction: rtl;
	font-family: inherit;
}
.le-wrap * { box-sizing: border-box; }
/* [luach_eruim_card]: the card stands alone, so let it keep its own width
   rather than shrinking toward a calendar that isn't there. */
.le-wrap--card-only .le-card { flex: 0 1 380px; }

/* ===== calendar (right side in RTL) ===== */
.le-calendar { flex: 0 1 400px; min-width: 300px; }
.le-cal-card {
	background: #fff;
	border-radius: var(--le-radius);
	box-shadow: var(--le-shadow);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.le-cal-head {
	background: var(--le-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
}
.le-cal-title { font-size: 22px; font-weight: 700; }
.le-nav {
	background: none;
	border: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 18px;
	cursor: pointer;
	padding: 4px 10px;
	line-height: 1;
}
.le-nav:hover { color: #fff; }
.le-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px 2px;
	padding: 18px 16px 22px;
	flex: 1;
	align-content: start;
}
.le-dow {
	text-align: center;
	font-size: 13px;
	color: #9a9a9a;
	padding-bottom: 6px;
}
.le-dow-sun { color: var(--le-teal); }
.le-day {
	text-align: center;
	font-size: 14px;
	color: var(--le-text);
	padding: 7px 0;
	line-height: 1;
	position: relative;
}
.le-day-sun { color: var(--le-teal); }
.le-today { font-weight: 700; color: #222; }
.le-clickable { cursor: pointer; }
.le-mark { background: var(--le-lilac); color: var(--le-purple); font-weight: 600; }
.le-mark-start { border-radius: 999px 0 0 999px; }
.le-mark-end { border-radius: 0 999px 999px 0; }
.le-mark-start.le-mark-end { border-radius: 999px; }
.le-mark-soft { background: var(--le-lilac-soft); border-radius: 999px; color: var(--le-purple); }

/* ===== event card (left side in RTL) ===== */
.le-card { flex: 0 1 340px; min-width: 280px; }
.le-card-inner {
	position: relative;
	background: url(card-bg.png) no-repeat center / 100% 100%;
	padding: 32px 36px 38px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.le-card-head {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 10px;
}
.le-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.le-badge img { width: 64px; height: 64px; display: block; }
.le-badge-label {
	color: var(--le-purple);
	font-size: 13px;
	line-height: 1.25;
	margin-top: 4px;
	max-width: 76px;
	text-align: center;
}
.le-date { text-align: center; color: var(--le-purple); }
.le-date-days { font-size: 28px; font-weight: 600; line-height: 1.1; }
.le-date-month { font-size: 17px; }
.le-title {
	color: var(--le-purple);
	font-size: 26px;
	font-weight: 700;
	margin: 6px 0 8px;
}
.le-subtitle {
	color: var(--le-teal);
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}
.le-subtitle svg { flex: 0 0 auto; }
.le-desc {
	color: var(--le-text);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 20px;
	/* Clamped so a long description can't stretch the card. Override the line
	   count with --le-desc-lines on .le-wrap. */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--le-desc-lines, 3);
	line-clamp: var(--le-desc-lines, 3);
	overflow: hidden;
}
.le-desc.is-open {
	display: block;
	overflow: visible;
}
.le-more {
	display: block;
	margin: -12px 0 20px;
	padding: 0;
	background: none;
	border: 0;
	color: var(--le-purple);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
}
.le-more:hover { color: var(--le-green); }
.le-btn {
	display: inline-block;
	background: var(--le-green);
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 34px;
	font-size: 17px;
	margin-top: auto;
	transition: background 0.2s;
}
.le-btn:hover { background: var(--le-green-dark); }
/* No event URL → same button, minus the affordances of a link. */
.le-btn--nolink { cursor: default; }
.le-btn--nolink:hover { background: var(--le-green); }
.le-empty {
	color: var(--le-purple);
	font-size: 20px;
	margin: auto;
	padding: 60px 0;
}
.le-card-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 0;
	color: var(--le-purple);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
}
.le-card-prev { right: -14px; }
.le-card-next { left: -14px; }
.le-card-nav:hover { color: var(--le-green); }

/* ===== mobile ===== */
@media (max-width: 767px) {
	.le-wrap { flex-direction: column; align-items: stretch; gap: 22px; }
	.le-calendar, .le-card { flex: 1 1 auto; min-width: 0; }
	.le-card-prev { right: -6px; }
	.le-card-next { left: -6px; }
}
