/**
 * Hamenagen - עמוד בית (שורטקוד hamenagen_homepage)
 * מצב בהיר/כהה: html[data-hm-theme] - סנכרון עם כפתור ההדר
 */

.hm-homepage {
	transition: background 0.25s ease;
	overflow-x: clip;
	max-width: 100%;
}

html[data-hm-theme="light"] .hm-homepage,
html:not([data-hm-theme]) .hm-homepage {
	background: #f4f5f8;
}

html[data-hm-theme="dark"] .hm-homepage {
	background: #16162e;
}

.hm-home {
	--hm-navy: #26235a;
	--hm-navy-deep: #20215a;
	--hm-brand: #cb1e53;
	--hm-brand-dark: #8a2254;
	--hm-accent: #fa8504;
	--hm-radius: 16px;
	--hm-radius-pill: 45px;
	--hm-transition: 0.25s ease;

	direction: rtl;
	font-family: "פולין" !important;
	color: var(--hm-text);
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1rem 2.5rem;
	box-sizing: border-box;
	transition: color var(--hm-transition), background var(--hm-transition);
}

html[data-hm-theme="light"] .hm-home,
html:not([data-hm-theme]) .hm-home {
	--hm-heading: #20215a;
	--hm-text: #333333;
	--hm-text-muted: #666666;
	--hm-surface: #ffffff;
	--hm-bg-soft: #f7f6ff;
	--hm-shadow: 0 4px 24px rgba(32, 33, 90, 0.08);
	--hm-dark-section-bg: #20215a;
	--hm-dark-inner-bg: #ffffff;
	--hm-card-border: transparent;
	--hm-nav-btn-bg: rgba(255, 255, 255, 0.92);
	--hm-nav-btn-hover-bg: #ffffff;
	--hm-nav-btn-color: #20215a;
	--hm-dot-inactive: #ccc;
	--hm-mail-border: #232121;
	--hm-downloads-more-border: rgba(32, 33, 90, 0.35);
}

html[data-hm-theme="dark"] .hm-home {
	--hm-heading: #f5f5f7;
	--hm-text: #f5f5f7;
	--hm-text-muted: rgba(245, 245, 247, 0.65);
	--hm-surface: rgba(255, 255, 255, 0.06);
	--hm-bg-soft: rgba(255, 255, 255, 0.04);
	--hm-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
	--hm-dark-section-bg: #20215a;
	--hm-dark-inner-bg: rgba(255, 255, 255, 0.06);
	--hm-card-border: rgba(255, 255, 255, 0.08);
	--hm-nav-btn-bg: rgba(255, 255, 255, 0.12);
	--hm-nav-btn-hover-bg: rgba(255, 255, 255, 0.2);
	--hm-nav-btn-color: #f5f5f7;
	--hm-dot-inactive: rgba(255, 255, 255, 0.25);
	--hm-mail-border: rgba(255, 255, 255, 0.15);
	--hm-downloads-more-border: rgba(245, 245, 247, 0.35);
}

.hm-home *,
.hm-home *::before,
.hm-home *::after {
	box-sizing: border-box;
}

/* === כותרות מקטע === */
.hm-home__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.hm-home__section-heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.hm-home__section-title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-family: "פולין" !important;
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	font-weight: 700;
	color: var(--hm-heading);
	text-decoration: none;
}

.hm-home__section-title svg {
	flex-shrink: 0;
	color: var(--hm-heading);
}

.hm-home__section-more {
	font-size: 0.9rem;
	color: var(--hm-heading);
	text-decoration: none;
	opacity: 0.85;
}

.hm-home__section-more:hover {
	opacity: 1;
	text-decoration: underline;
}

/* === כרטיסים לבנים === */
.hm-home__card {
	background: var(--hm-surface);
	border: 1px solid var(--hm-card-border);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	transition: background var(--hm-transition), border-color var(--hm-transition), box-shadow var(--hm-transition);
}

.hm-home__badge {
	position: absolute;
	top: 9px;
	right: 9px;
	background: var(--hm-brand);
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	padding: 5px 8px;
	border-radius: var(--hm-radius-pill);
	text-decoration: none;
	z-index: 2;
}

/* --- הלוהטים - מדורג, גובה חצי מסך --- */
.hm-home__card--hot {
	min-height: 50vh;
}

.hm-home__card--hot .hm-home__hot-carousel {
	min-height: calc(50vh - 3.5rem);
}

.hm-home__hot-carousel {
	position: relative;
	padding: 0.25rem 0;
}

.hm-home__hot-carousel .owl-stage-outer {
	overflow: hidden;
}

.hm-home__hot-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.hm-home__hot-slide {
	width: 100%;
}

.hm-home__hot-image {
	position: relative;
	width: 100%;
	min-height: 38vh;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(32, 33, 90, 0.12);
	transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
	transform: scale(0.82);
	transform-origin: center center;
	opacity: 0.88;
}

.hm-home__hot-carousel .owl-item.hm-hot-center .hm-home__hot-image {
	transform: scale(1);
	opacity: 1;
	box-shadow: 0 6px 20px rgba(32, 33, 90, 0.12);
}

.hm-home__hot-carousel .owl-item.hm-hot-side .hm-home__hot-image {
	box-shadow: 0 4px 14px rgba(32, 33, 90, 0.08);
}

.hm-home__hot-link,
.hm-home__hot-link:link,
.hm-home__hot-link:visited,
.hm-home__hot-link:hover,
.hm-home__hot-link:focus {
	display: block;
	position: absolute;
	inset: 0;
	text-decoration: none;
	color: #fff !important;
}

.hm-home__hot-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease, filter 0.35s ease;
}

.hm-home__hot-slide:hover .hm-home__hot-image img {
	transform: scale(1.04);
	filter: brightness(1.05);
}

.hm-home__hot-image .hm-home__badge {
	top: 10px;
	right: 10px;
	font-size: 12px;
	z-index: 3;
}

.hm-home__hot-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1rem 1.1rem;
	background: linear-gradient(180deg, transparent 35%, rgba(32, 33, 90, 0.88) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 2;
	color: #fff !important;
}

.hm-home__hot-slide:hover .hm-home__hot-overlay {
	opacity: 1;
}

.hm-home__hot-title {
	margin: 0;
	font-size: clamp(15px, 1.6vw, 20px);
	font-weight: 600;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	line-height: 1.35;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	font-family: "פולין" !important;
}

.hm-home__hot-carousel .owl-nav {
	top: 42%;
}

/* --- סליידרים רגילים --- */

.hm-home__featured-slide {
	position: relative;
}

.hm-home__featured-image {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
}

.hm-home__featured-link {
	display: block;
	position: absolute;
	inset: 0;
}

.hm-home__featured-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: filter var(--hm-transition);
}

.hm-home__featured-slide:hover .hm-home__featured-image img {
	filter: brightness(1.1);
}

.hm-home__featured-image .hm-home__badge {
	top: 10px;
	right: 10px;
	font-size: 12px;
	z-index: 3;
}

.hm-home__featured-title {
	margin: 10px 0 0;
	font-size: clamp(14px, 1.5vw, 21px);
	font-weight: 600;
	color: var(--hm-heading);
	line-height: 1.35;
	font-family: "פולין" !important;
}

.hm-home__featured-title a {
	color: inherit;
	text-decoration: none;
}

.hm-home__featured-title a:hover {
	color: var(--hm-brand);
}

/* --- הורדות - שורות אופקיות --- */
.hm-home__downloads-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

@media (min-width: 576px) {
	.hm-home__downloads-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

.hm-home__download-item {
	--hm-dl-h: clamp(52px, 8vw, 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	min-height: var(--hm-dl-h);
	padding: 1rem 2.55rem 1rem 1rem;
	background: var(--hm-bg-soft);
	border: 1px solid var(--hm-card-border);
	border-radius: 50px;
	box-shadow: var(--hm-shadow);
	transition: border-color var(--hm-transition), box-shadow var(--hm-transition);
}

html[data-hm-theme="light"] .hm-home__download-item,
html:not([data-hm-theme]) .hm-home__download-item {
	border-color: rgba(32, 33, 90, 0.08);
	box-shadow: 0 4px 14px rgba(32, 33, 90, 0.06);
}

.hm-home__download-item:hover {
	border-color: rgba(203, 30, 83, 0.25);
}

.hm-home__download-info {
	flex: 1;
	min-width: 0;
	line-height: 1.25;
}

.hm-home__download-singer {
	display: flex;
	flex-flow: row nowrap;
	align-items: baseline;
	gap: 0.2em;
	min-width: 0;
	max-width: 100%;
	font-size: clamp(0.8rem, 1.4vw, 0.92rem);
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hm-home__download-singer-link {
	flex: 0 0 auto;
	white-space: nowrap;
	color: var(--hm-heading);
	text-decoration: none;
	transition: color var(--hm-transition);
}

.hm-home__download-singer-link:hover {
	color: var(--hm-brand);
}

.hm-home__download-singer-sep {
	flex: 0 0 auto;
	color: var(--hm-heading);
	font-weight: 700;
	white-space: pre;
}

.hm-home__download-song {
	display: block;
	margin-top: 0.15em;
	color: var(--hm-text-muted);
	font-size: clamp(0.72rem, 1.2vw, 0.82rem);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color var(--hm-transition);
}

.hm-home__download-song:hover {
	color: var(--hm-brand);
}

.hm-home__download-action {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform var(--hm-transition);
}

.hm-home__download-action:hover {
	transform: scale(1.04);
}

.hm-home__download-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(34px, 6vw, 40px);
	height: clamp(34px, 6vw, 40px);
	background: var(--hm-navy);
	border-radius: 50%;
	transition: background var(--hm-transition);
}

.hm-home__download-action:hover .hm-home__download-circle {
	background: var(--hm-brand);
}

.hm-home__download-circle img {
	display: block;
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.hm-home__downloads-more {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 1rem auto 0;
	padding: 0.5rem 0.25rem;
	background: none;
	color: var(--hm-heading);
	font-family: "פולין" !important;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid var(--hm-downloads-more-border);
	transition: color var(--hm-transition), border-color var(--hm-transition);
}

.hm-home__downloads-more:hover {
	color: var(--hm-brand);
	border-bottom-color: var(--hm-brand);
}

.hm-home__empty--full {
	grid-column: 1 / -1;
}

/* === הופעות ואירועים === */
.hm-home__card--events {
	position: relative;
	overflow: hidden;
}

.hm-home__card--events::before {
	content: "";
	position: absolute;
	inset-inline-end: -12%;
	top: -40%;
	width: min(280px, 55%);
	height: min(280px, 55%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(203, 30, 83, 0.12), transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.hm-home__card--events::after {
	content: "";
	position: absolute;
	inset-inline-start: -8%;
	bottom: -35%;
	width: min(220px, 45%);
	height: min(220px, 45%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(250, 133, 4, 0.1), transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.hm-home__card--events>*:not(.hm-home__event-lightbox) {
	position: relative;
	z-index: 1;
}

.hm-home__events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

@media (min-width: 700px) {
	.hm-home__events-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

.hm-home__event-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	min-width: 0;
	background: var(--hm-bg-soft);
	border: 1px solid var(--hm-card-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(32, 33, 90, 0.07);
	transition: transform var(--hm-transition), box-shadow var(--hm-transition), border-color var(--hm-transition);
	animation: hm-home-event-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html[data-hm-theme="light"] .hm-home__event-card,
html:not([data-hm-theme]) .hm-home__event-card {
	border-color: rgba(32, 33, 90, 0.1);
	background: #fff;
}

html[data-hm-theme="dark"] .hm-home__event-card {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (min-width: 480px) {
	.hm-home__event-card {
		grid-template-columns: 96px minmax(0, 1fr);
	}
}

.hm-home__event-card:hover {
	transform: translateY(-3px);
	border-color: rgba(203, 30, 83, 0.28);
	box-shadow: 0 16px 36px rgba(32, 33, 90, 0.12);
}

html[data-hm-theme="dark"] .hm-home__event-card:hover {
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hm-home__events-grid>.hm-home__event-card:nth-child(1) {
	animation-delay: 0.04s;
}

.hm-home__events-grid>.hm-home__event-card:nth-child(2) {
	animation-delay: 0.1s;
}

.hm-home__events-grid>.hm-home__event-card:nth-child(3) {
	animation-delay: 0.16s;
}

.hm-home__events-grid>.hm-home__event-card:nth-child(4) {
	animation-delay: 0.22s;
}

@keyframes hm-home-event-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hm-home__event-visual {
	position: relative;
	min-height: 118px;
	overflow: hidden;
	background: linear-gradient(145deg, #26235a 0%, #cb1e53 55%, #fa8504 100%);
}

html[data-hm-theme="dark"] .hm-home__event-visual {
	background: linear-gradient(145deg, #1a1838 0%, #8b1540 55%, #c46a00 100%);
}

@media (min-width: 480px) {
	.hm-home__event-visual {
		min-height: 0;
		height: auto;
		align-self: stretch;
	}
}

.hm-home__event-flyer {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 118px !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit !important;
	line-height: 0 !important;
	text-align: inherit !important;
	cursor: zoom-in !important;
	overflow: hidden !important;
}

.hm-home__event-flyer img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 118px !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-fit: cover !important;
	object-position: center top !important;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-home__event-card:hover .hm-home__event-flyer:not(.hm-home__event-flyer--empty) img {
	transform: scale(1.05);
}

.hm-home__event-zoom {
	position: absolute;
	inset-inline-end: 0.4rem;
	bottom: 0.4rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(15, 15, 35, 0.72);
	color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(4px);
	pointer-events: none;
	transition: transform var(--hm-transition), background var(--hm-transition);
}

.hm-home__event-card:hover .hm-home__event-zoom {
	background: var(--hm-brand);
	transform: scale(1.08);
}

.hm-home__event-flyer--empty {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: rgba(255, 255, 255, 0.88);
	min-height: 118px !important;
	cursor: default !important;
}

.hm-home__event-date {
	position: absolute;
	top: 0.4rem;
	inset-inline-start: 0.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 2.35rem;
	padding: 0.18rem 0.28rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 14px rgba(32, 33, 90, 0.18);
	line-height: 1;
	z-index: 2;
}

html[data-hm-theme="dark"] .hm-home__event-date {
	background: rgba(15, 15, 35, 0.92);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hm-home__event-date-day {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1;
	color: var(--hm-navy-deep);
}

html[data-hm-theme="dark"] .hm-home__event-date-day {
	color: #fff;
}

.hm-home__event-date-month {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 0.58rem;
	font-weight: 700;
	line-height: 1;
	color: var(--hm-brand);
	text-transform: uppercase;
}

.hm-home__event-countdown {
	position: absolute;
	top: 0.4rem;
	inset-inline-end: 0.4rem;
	z-index: 2;
	padding: 0.18rem 0.5rem;
	border-radius: var(--hm-radius-pill);
	background: rgba(203, 30, 83, 0.95);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: 0 3px 10px rgba(203, 30, 83, 0.35);
	max-width: calc(100% - 3.2rem);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hm-home__event-body {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	padding: 0.55rem 0.75rem 0.6rem;
	min-width: 0;
}

.hm-home__event-title {
	margin: 0;
	font-family: "פולין" !important;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--hm-heading);
	letter-spacing: -0.015em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hm-home__event-artists {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem 0.55rem;
}

.hm-home__event-singer {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
	color: var(--hm-text);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--hm-transition), opacity var(--hm-transition);
}

a.hm-home__event-singer:hover {
	color: var(--hm-brand);
	opacity: 0.95;
}

.hm-home__event-avatar {
	display: block !important;
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	border-radius: 50% !important;
	object-fit: cover !important;
	object-position: center center !important;
	flex-shrink: 0;
	overflow: hidden;
	box-shadow: 0 0 0 1.5px rgba(32, 33, 90, 0.12);
}

html[data-hm-theme="dark"] .hm-home__event-avatar {
	box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.15);
}

.hm-home__event-meta {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
}

.hm-home__event-meta-row {
	display: flex;
	align-items: flex-start;
	gap: 0.3rem;
	margin: 0;
	font-size: 0.74rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--hm-text-muted);
}

.hm-home__event-meta-row svg {
	flex-shrink: 0;
	margin-top: 0.08rem;
	color: var(--hm-brand);
	opacity: 0.85;
}

/* כפיית כפתורים בסקשיין הופעות */
.hm-home__card--events button,
.hm-home__card--events .hm-home__event-btn,
.hm-home__card--events a.hm-home__event-btn,
.hm-home__card--events input,
.hm-home__card--events select,
.hm-home__card--events textarea {
	-webkit-appearance: none !important;
	appearance: none !important;
	box-sizing: border-box !important;
	font-family: "פולין" !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	cursor: pointer !important;
}

.hm-home__event-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.15rem;
	padding-top: 0;
}

.hm-home__event-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0.35rem 0.8rem !important;
	border-radius: var(--hm-radius-pill) !important;
	font-size: 0.74rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	min-height: unset !important;
	height: auto !important;
	width: auto !important;
	border: 1px solid transparent !important;
	box-shadow: none !important;
	background-image: none !important;
	transition: transform var(--hm-transition), background var(--hm-transition), color var(--hm-transition), border-color var(--hm-transition) !important;
}

.hm-home__event-btn--primary {
	background: var(--hm-brand) !important;
	color: #fff !important;
	border-color: var(--hm-brand) !important;
}

.hm-home__event-btn--primary:hover,
.hm-home__event-btn--primary:focus {
	background: #b01948 !important;
	color: #fff !important;
	border-color: #b01948 !important;
	transform: translateY(-1px);
}

.hm-home__event-btn--ghost {
	background: transparent !important;
	color: var(--hm-heading) !important;
	border-color: rgba(32, 33, 90, 0.18) !important;
}

html[data-hm-theme="dark"] .hm-home__event-btn--ghost {
	border-color: rgba(255, 255, 255, 0.18) !important;
}

.hm-home__event-btn--ghost:hover,
.hm-home__event-btn--ghost:focus {
	border-color: var(--hm-brand) !important;
	color: var(--hm-brand) !important;
	background: transparent !important;
	transform: translateY(-1px);
}

.hm-home__events-more {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 1rem auto 0;
	padding: 0.5rem 0.25rem;
	background: none !important;
	color: var(--hm-heading) !important;
	font-family: "פולין" !important;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	text-decoration: none !important;
	border: 0 !important;
	border-bottom: 1px solid var(--hm-downloads-more-border) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: color var(--hm-transition), border-color var(--hm-transition);
}

.hm-home__events-more:hover {
	color: var(--hm-brand) !important;
	border-bottom-color: var(--hm-brand) !important;
}

@media (max-width: 479px) {

	.hm-home__event-visual,
	.hm-home__event-flyer,
	.hm-home__event-flyer img,
	.hm-home__event-flyer--empty {
		min-height: 132px !important;
	}
}

/* === לייטבוקס מודעת הופעה === */
.hm-home__event-lightbox {
	position: fixed !important;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(10, 10, 28, 0.88);
	backdrop-filter: blur(6px);
}

.hm-home__event-lightbox[hidden] {
	display: none !important;
}

.hm-home__event-lightbox-img {
	max-width: min(92vw, 720px);
	max-height: 88vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hm-home__event-lightbox-close {
	position: absolute !important;
	top: 1rem !important;
	inset-inline-end: 1rem !important;
	width: 44px !important;
	height: 44px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
	font-size: 1.75rem !important;
	line-height: 1 !important;
	padding: 0 !important;
	cursor: pointer !important;
}

.hm-home__event-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.22) !important;
}

body.hm-home-event-lightbox-open {
	overflow: hidden;
}

/* === באנר מייל === */
.hm-home__mail-banner {
	display: block;
	line-height: 0;
	margin: 1.5rem 0;
	animation: hm-home-pulse 2.2s infinite ease-in-out;
}

.hm-home__mail-banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 2px solid var(--hm-mail-border);
}

@keyframes hm-home-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(201, 0, 0, 0.35);
	}

	60% {
		box-shadow: 0 0 0 12px transparent;
	}

	100% {
		box-shadow: 0 0 0 0 transparent;
	}
}

/* === ז'אנרים - pills === */
.hm-home__section-title--plain {
	cursor: default;
	text-decoration: none;
}

.hm-home__section-title--plain svg:last-child {
	opacity: 0.45;
	flex-shrink: 0;
}

.hm-home__genres-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.hm-home__genre-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1.1rem;
	border-radius: var(--hm-radius-pill);
	background: var(--hm-genre-color, var(--hm-navy-deep));
	color: #fff;
	font-size: clamp(0.85rem, 1.6vw, 1rem);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: transform var(--hm-transition), box-shadow var(--hm-transition), opacity var(--hm-transition);
}

.hm-home__genre-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(32, 33, 90, 0.18);
	opacity: 0.95;
	color: #fff;
}

.hm-home__genre-pill-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	opacity: 0.95;
}

.hm-home__genre-pill-name {
	white-space: nowrap;
}

/* === חדשות המוזיקה - גריד === */
.hm-home__news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.hm-home__news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hm-home__news-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 102px;
	background: var(--hm-bg-soft);
	border-radius: var(--hm-radius-pill) 0 0 var(--hm-radius-pill);
	border-right: 8px solid;
	border-image: linear-gradient(180deg, var(--hm-brand-dark) 0%, #e4285a 50%, var(--hm-brand-dark) 100%) 1;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform var(--hm-transition), box-shadow var(--hm-transition);
}

.hm-home__news-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--hm-shadow);
}

.hm-home__news-card-image {
	flex: 0 0 46%;
	min-height: 27vh;
	position: relative;
	overflow: hidden;
}

.hm-home__news-card-image img {
	width: 100%;
	height: 100%;
	min-height: 120px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.hm-home__news-card:hover .hm-home__news-card-image img {
	transform: scale(1.05);
}

.hm-home__news-card-body {
	flex: 1;
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
}

.hm-home__news-card-title {
	margin: 0;
	font-size: clamp(16px, 2vw, 21px);
	font-weight: 600;
	color: var(--hm-heading);
	line-height: 1.35;
}

.hm-home__news-card-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--hm-heading);
	opacity: 0.8;
}

.hm-home__news-card-date svg {
	color: var(--hm-heading);
}

/* === מקטעים כהים (מאחורי הקלעים / מגזין) === */
.hm-home__dark-section {
	background: var(--hm-dark-section-bg);
	border-radius: var(--hm-radius);
	padding: 1.5rem 1.25rem 1.25rem;
	margin-bottom: 1.5rem;
	transition: background var(--hm-transition);
}

.hm-home__dark-section .hm-home__section-title {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.hm-home__dark-section .hm-home__section-more {
	color: rgba(255, 255, 255, 0.85) !important;
}

.hm-home__dark-inner {
	background: var(--hm-dark-inner-bg);
	border: 1px solid var(--hm-card-border);
	border-radius: var(--hm-radius);
	overflow: hidden;
	margin-top: 1rem;
	padding: 1rem;
	transition: background var(--hm-transition), border-color var(--hm-transition);
}

/* === כרטיס מגזין === */
.hm-home__section-carousel--magazine .hm-home__magazine-card {
	padding: 0.5rem;
	height: 100%;
}

.hm-home__magazine-card {
	padding: 1.25rem;
}

.hm-home__magazine-title {
	margin: 0 0 0.75rem;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;
	color: var(--hm-heading);
	line-height: 1.35;
	font-family: "פולין" !important;
}

.hm-home__magazine-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--hm-transition);
}

.hm-home__magazine-title a:hover {
	color: var(--hm-brand);
}

.hm-home__magazine-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.hm-home__magazine-date {
	font-size: 14px;
	color: var(--hm-text-muted);
	font-family: "פולין" !important;
}

.hm-home__magazine-image {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.hm-home__magazine-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/9;
	object-fit: cover;
}

/* === כרטיס תוכנית === */
.hm-home__section-carousel--programs {
	position: relative;
	min-height: 280px;
}

.hm-home__section-carousel--programs .item {
	padding: 0.15rem 0;
}

.hm-home__program-slide {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background: var(--hm-surface);
	border-radius: var(--hm-radius);
	overflow: hidden;
	min-height: 280px;
}

.hm-home__program-cta {
	flex: 0 0 44%;
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 280px;
	text-decoration: none;
}

.hm-home__program-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.hm-home__program-cta:hover .hm-home__program-bg {
	transform: scale(1.04);
}

.hm-home__program-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.65rem;
	padding: 1.25rem 1.5rem;
	min-width: 0;
}

.hm-home__program-title {
	margin: 0;
	font-size: clamp(18px, 2.4vw, 26px);
	font-weight: 700;
	color: var(--hm-heading);
	line-height: 1.3;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-home__program-title a {
	color: inherit;
	text-decoration: none;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-home__program-title a:hover {
	color: var(--hm-brand);
}

.hm-home__program-date {
	font-size: 14px;
	color: var(--hm-text-muted);
}

.hm-home__program-badge {
	display: inline-flex;
	align-self: flex-start;
	background: #8b87c8;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	line-height: 1.4;
}

@media (max-width: 575px) {
	.hm-home__program-cta {
		flex: 0 0 38%;
	}

	.hm-home__program-info {
		padding: 0.85rem 1rem;
		gap: 0.45rem;
	}

	.hm-home__program-title {
		font-size: clamp(15px, 4vw, 18px);
	}
}

/* === באנר פלייליסטים === */
.hm-home__promo {
	display: block;
	background: linear-gradient(135deg, var(--hm-navy) 0%, var(--hm-navy-deep) 100%);
	border-radius: var(--hm-radius);
	padding: 1.1rem 1.25rem;
	margin: 1.5rem 0;
	text-decoration: none;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	text-align: center;
	line-height: 1.5;
	transition: transform var(--hm-transition), box-shadow var(--hm-transition);
}

.hm-home__promo:hover {
	transform: translateY(-2px);
	box-shadow: var(--hm-shadow);
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.hm-home__promo b {
	color: var(--hm-accent);
}

/* === Owl Carousel - ניווט === */
.hm-home .owl-carousel .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 4px;
	z-index: 5;
}

.hm-home .owl-carousel .owl-nav button.owl-prev,
.hm-home .owl-carousel .owl-nav button.owl-next {
	pointer-events: all;
	width: 36px;
	height: 36px;
	background: var(--hm-nav-btn-bg) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	margin: 0 !important;
	transition: background var(--hm-transition);
}

.hm-home .owl-carousel .owl-nav button.owl-prev:hover,
.hm-home .owl-carousel .owl-nav button.owl-next:hover {
	background: var(--hm-nav-btn-hover-bg) !important;
}

.hm-home .owl-carousel .owl-nav button span {
	font-size: 22px;
	line-height: 1;
	color: var(--hm-nav-btn-color);
}

.hm-home .owl-dots {
	text-align: center;
	margin-top: 0.75rem;
}

.hm-home .owl-dots .owl-dot span {
	background: var(--hm-dot-inactive);
}

.hm-home .owl-dots .owl-dot.active span {
	background: var(--hm-brand);
}

/* === ריק === */
.hm-home__empty {
	text-align: center;
	padding: 2rem;
	color: var(--hm-text-muted);
	font-size: 0.95rem;
}

/* === מובייל === */
@media (max-width: 767px) {
	.hm-home__news-card {
		flex-direction: column;
		border-radius: var(--hm-radius);
		border-right: none;
		border-top: 6px solid var(--hm-brand);
	}

	.hm-home__news-card-image {
		flex: none;
		width: 100%;
		min-height: 160px;
	}

	.hm-home__featured-image .hm-home__badge {
		right: 12px;
		top: 12px;
		font-size: 12px;
	}
}