/* Hamenagen - עמוד פוסט (YouTube-style) */

.hm-post {
	--hm-primary: #26235a;
	--hm-accent: #fa8504;
	--hm-text: #0f0f0f;
	--hm-muted: #606060;
	--hm-border: #e5e5e5;
	--hm-radius: 12px;
	--hm-font: "פולין", sans-serif;
	--hm-sidebar-w: 340px;

	direction: rtl;
	font-family: var(--hm-font) !important;
	color: var(--hm-text);
	max-width: 1600px;
	margin: 0 auto;
	padding: 16px 20px 48px;
	box-sizing: border-box;
}

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

/* פולין על כל הטקסט - דורס Elementor / Heebo / תבנית */
.hm-post :where(h1, h2, h3, h4, h5, h6,
	p, span, a, button, input, select, textarea, label,
	li, td, th, figcaption, blockquote) {
	font-family: "פולין", sans-serif !important;
}

.hm-post__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--hm-sidebar-w);
	gap: 24px;
	align-items: start;
}

.hm-post__main {
	min-width: 0;
	width: 100%;
}

/* === מדיה === */
.hm-post__media {
	position: relative;
	width: 100%;
	border-radius: var(--hm-radius);
	overflow: hidden;
	background: #000;
	margin-bottom: 16px;
}

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

.hm-post__media--no-video {
	cursor: default;
}

.hm-post__no-video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(180deg,
			rgba(38, 35, 90, 0.55) 0%,
			rgba(15, 15, 15, 0.72) 100%);
	text-align: center;
	pointer-events: none;
}

.hm-post__no-video-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: 420px;
	color: #fff;
}

.hm-post__no-video-icon {
	flex-shrink: 0;
	opacity: 0.95;
}

.hm-post__no-video-title {
	margin: 0 !important;
	font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	color: #fff !important;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hm-post__no-video-desc {
	margin: 0 !important;
	font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.92) !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hm-post__video-facade {
	position: relative;
	cursor: pointer;
}

.hm-post__video-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 72px;
	height: 72px;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(0, 0, 0, 0.75) !important;
	color: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: transform 0.2s ease, background 0.2s ease;
	padding: 0 !important;
	font-family: "פולין", sans-serif !important;
}

.hm-post__video-facade:hover .hm-post__video-play,
.hm-post__video-play:focus {
	background: var(--hm-accent) !important;
	transform: scale(1.05);
}

.hm-post__video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.hm-post__video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* === כותרת ומטא === */
.hm-post__title {
	font-size: clamp(1.2rem, 1.5vw, 1.85rem) !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	color: var(--hm-primary) !important;
	margin: 0 0 8px !important;
}

.hm-post__author-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--hm-border);
}

.hm-post__author {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	text-decoration: none !important;
	color: var(--hm-primary) !important;
	font-weight: 500 !important;
}

.hm-post__author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.hm-post__singers {
	position: relative;
}

.hm-post__singers-trigger {
	border: none !important;
	background: none !important;
	padding: 0 !important;
	cursor: pointer !important;
	font-family: inherit !important;
	text-align: inherit !important;
}

.hm-post__singers-trigger:hover,
.hm-post__singers-trigger:focus-visible {
	color: var(--hm-accent) !important;
	outline: none;
}

.hm-post__singers-trigger[aria-expanded="true"] {
	color: var(--hm-accent) !important;
}

.hm-post__singers-popup {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 50;
	min-width: 240px;
	max-width: min(320px, 90vw);
	background: #fff;
	border: 1px solid var(--hm-border);
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(15, 15, 15, 0.14);
	padding: 8px 0;
}

.hm-post__singers-popup[hidden] {
	display: none !important;
}

.hm-post__singers-popup-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hm-post__singers-popup-item {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 10px 16px !important;
	text-decoration: none !important;
	color: var(--hm-primary) !important;
	font-weight: 500 !important;
	transition: background 0.15s ease;
}

.hm-post__singers-popup-item:hover,
.hm-post__singers-popup-item:focus-visible {
	background: rgba(38, 35, 90, 0.06);
	color: var(--hm-accent) !important;
	outline: none;
}

.hm-post__singers-popup-item img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.hm-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem !important;
	color: var(--hm-muted) !important;
}

.hm-post__time {
	white-space: nowrap;
}

/* === פעולות - !important נגד דריסה מ-Elementor === */
.hm-post__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 16px;
}

.hm-post__cmp {
	display: inline-flex;
	align-items: center;
}

.hm-post .hm-post__action,
.hm-post .hm-post__cmp .cmp-play-btn,
.hm-post .hm-save-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	position: relative !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: #f2f2f2 !important;
	color: var(--hm-text) !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	max-width: 42px !important;
	overflow: visible !important;
}

.hm-post .hm-post__cmp .cmp-play-btn {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	max-width: 48px !important;
	background: var(--hm-accent) !important;
	background-color: var(--hm-accent) !important;
	color: #1a1a1a !important;
	box-shadow: 0 6px 20px rgba(250, 133, 4, 0.45) !important;
}

.hm-post .hm-post__action:hover,
.hm-post .hm-save-btn:hover {
	background: var(--hm-primary) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.hm-post .hm-post__cmp .cmp-play-btn:hover {
	background: var(--hm-accent) !important;
	color: #1a1a1a !important;
	transform: scale(1.05);
	box-shadow: 0 8px 28px rgba(250, 133, 4, 0.55) !important;
}

.hm-post .hm-post__action.is-saved,
.hm-post .hm-save-btn.is-saved {
	background: var(--hm-primary) !important;
	color: #fff !important;
}

.hm-post .hm-post__action svg,
.hm-post .hm-save-btn svg,
.hm-post .hm-post__cmp .cmp-play-btn svg {
	flex-shrink: 0;
	stroke: currentColor !important;
	width: 20px !important;
	height: 20px !important;
}

.hm-post .hm-post__cmp .cmp-play-btn svg {
	width: 22px !important;
	height: 22px !important;
	margin-inline-start: 2px;
}

.hm-post .hm-post__cmp .cmp-play-btn svg[fill="currentColor"] {
	stroke: none !important;
	fill: currentColor !important;
}

.hm-post .hm-post__action--drive svg {
	stroke: currentColor !important;
	fill: none !important;
	flex-shrink: 0;
}

/* תווית hover */
.hm-post .hm-post__action-tip {
	position: absolute !important;
	bottom: calc(100% + 8px) !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(4px) !important;
	padding: 5px 10px !important;
	border-radius: 8px !important;
	background: #1a1a1a !important;
	color: #fff !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	white-space: nowrap !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	z-index: 30 !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease !important;
}

.hm-post .hm-post__action:hover .hm-post__action-tip,
.hm-post .hm-post__action:focus-visible .hm-post__action-tip,
.hm-post .hm-save-btn:hover .hm-post__action-tip,
.hm-post .hm-save-btn:focus-visible .hm-post__action-tip,
.hm-post .hm-post__cmp .cmp-play-btn:hover .hm-post__action-tip,
.hm-post .hm-post__cmp .cmp-play-btn:focus-visible .hm-post__action-tip {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateX(-50%) translateY(0) !important;
}

/* כפתור תור בעמוד פוסט - תמיד גלוי (לא תלוי ב-cmp-player-can-queue) */
.hm-post .hm-post__action--queue.cmp-queue-add-btn {
	visibility: visible !important;
	pointer-events: auto !important;
}

.hm-post .hm-post__action--now-playing,
.hm-post .hm-post__action--queued {
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 42px !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	gap: 0 !important;
}

.hm-post .hm-post__action--now-playing {
	background: #000 !important;
	color: #fff !important;
	cursor: default !important;
	pointer-events: none !important;
	transform: none !important;
}

.hm-post .hm-post__action--now-playing:hover {
	background: #000 !important;
	color: #fff !important;
	transform: none !important;
}

.hm-post .hm-post__action--now-playing svg {
	display: none;
}

.hm-post .hm-post__action--now-playing .hm-post__action-tip,
.hm-post .hm-post__action--queued .hm-post__action-tip {
	position: static !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	padding: 0 !important;
	background: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
	font-size: 0.85rem !important;
	white-space: nowrap !important;
}

.hm-post .hm-post__action--queued {
	background: #059669 !important;
	color: #fff !important;
}

.hm-post .hm-post__action--queued:hover {
	background: #047857 !important;
	color: #fff !important;
}

.hm-post .hm-post__action--queued svg {
	display: none;
}

.hm-post button.hm-post__action--not-interested {
	appearance: none !important;
	-webkit-appearance: none !important;
	font: inherit !important;
	margin: 0 !important;
	outline: none !important;
}

.hm-post button.hm-post__action--not-interested.is-marked,
.hm-post button.hm-post__action--not-interested.is-marked:hover {
	background: #7f1d4e !important;
	border-color: #7f1d4e !important;
	color: #fff !important;
}

.hm-post button.hm-post__action--not-interested:focus-visible {
	outline: 3px solid rgba(127, 29, 78, 0.3) !important;
	outline-offset: 2px !important;
}

.hm-post button.hm-post__action--not-interested:disabled {
	opacity: 0.58 !important;
	cursor: wait !important;
	pointer-events: none !important;
}

.hm-post .hm-not-interested-btn__icon {
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.hm-post__share-group {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: auto;
	margin: 0;
}

.hm-post .hm-post__share-toggle {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	padding: 0 14px !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 999px !important;
	background: #f2f2f2 !important;
	color: var(--hm-text) !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	height: 42px !important;
	min-height: 42px !important;
	box-shadow: none !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hm-post .hm-post__share-toggle:hover,
.hm-post .hm-post__share-group.is-open .hm-post__share-toggle,
.hm-post .hm-post__share-group:hover .hm-post__share-toggle {
	background: var(--hm-primary) !important;
	color: #fff !important;
}

.hm-post .hm-post__share-toggle svg {
	flex-shrink: 0;
	stroke: currentColor !important;
}

.hm-post__share-quick {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 168px;
	padding: 8px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--hm-border);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.hm-post__share-quick::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

.hm-post__share-group:hover .hm-post__share-quick,
.hm-post__share-group:focus-within .hm-post__share-quick,
.hm-post__share-group.is-open .hm-post__share-quick {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

@media (hover: none) {

	.hm-post__share-group:hover .hm-post__share-quick,
	.hm-post__share-group:focus-within .hm-post__share-quick {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(4px);
	}

	.hm-post__share-group.is-open .hm-post__share-quick {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.hm-post .hm-post__action:hover .hm-post__action-tip,
	.hm-post .hm-save-btn:hover .hm-post__action-tip,
	.hm-post .hm-post__cmp .cmp-play-btn:hover .hm-post__action-tip {
		opacity: 0 !important;
		visibility: hidden !important;
	}
}

.hm-post .hm-post__share-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 8px !important;
	padding: 9px 12px !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 10px !important;
	background: transparent !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.85rem !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	cursor: pointer !important;
	text-decoration: none !important;
	color: var(--hm-text) !important;
	box-shadow: none !important;
	min-height: unset !important;
	width: 100% !important;
}

.hm-post .hm-post__share-btn:hover {
	background: #f5f5f7 !important;
	color: var(--hm-primary) !important;
}

.hm-post .hm-post__share-btn--wa:hover {
	background: #25d366 !important;
	color: #fff !important;
}

.hm-post .hm-post__share-btn--wa:hover svg {
	fill: #fff !important;
}

.hm-post .hm-post__share-btn svg {
	flex-shrink: 0;
}

/* === פלייליסט === */
.hm-post__playlist {
	margin-bottom: 16px;
	padding: 12px 14px;
	background: #f9f9f9;
	border-radius: var(--hm-radius);
	border: 1px solid var(--hm-border);
}

.hm-post__playlist-label {
	display: block !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	margin-bottom: 8px !important;
	color: var(--hm-primary) !important;
}

.hm-post__playlist-row {
	display: flex;
	gap: 8px;
}

.hm-post .hm-post__playlist-select {
	flex: 1;
	min-width: 0;
	padding: 9px 12px !important;
	border: 1px solid var(--hm-border) !important;
	border-radius: 8px !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.9rem !important;
	background: #fff !important;
	color: var(--hm-text) !important;
	height: auto !important;
	line-height: 1.4 !important;
}

.hm-post .hm-post__playlist-btn {
	padding: 9px 18px !important;
	border: none !important;
	border-radius: 8px !important;
	background: var(--hm-accent) !important;
	color: #fff !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	box-shadow: none !important;
	min-height: unset !important;
	width: auto !important;
	white-space: nowrap;
}

.hm-post .hm-post__playlist-btn:hover:not(:disabled) {
	background: #ff9a2e !important;
}

.hm-post .hm-post__playlist-btn:disabled {
	opacity: 0.5 !important;
	cursor: not-allowed !important;
}

.hm-post__playlist-hint {
	margin: 8px 0 0 !important;
	font-size: 0.85rem !important;
	color: var(--hm-muted) !important;
}

.hm-post__playlist-hint.is-error {
	color: #c80553 !important;
}

/* === תגיות === */
.hm-post__tags {
	margin-bottom: 16px;
	padding: 12px 14px;
	background: #fff;
	border-radius: var(--hm-radius);
	border: 1px solid var(--hm-border);
}

.hm-post__tags-label {
	display: block !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	margin-bottom: 10px !important;
	color: var(--hm-primary) !important;
	font-family: "פולין", sans-serif !important;
}

.hm-post__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hm-post .hm-post__tag {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 7px 12px !important;
	border-radius: 999px !important;
	background: #f2f2f2 !important;
	color: var(--hm-text) !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.85rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	border: 1px solid transparent !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	line-height: 1.3 !important;
}

.hm-post .hm-post__tag:hover {
	background: var(--hm-primary) !important;
	color: #fff !important;
}

.hm-post .hm-post__tag--singer:hover {
	background: #20215a !important;
}

.hm-post .hm-post__tag--playlist:hover {
	background: var(--hm-accent) !important;
	color: #fff !important;
}

.hm-post .hm-post__tag--vibe:hover {
	background: #7a2053 !important;
	color: #fff !important;
}

.hm-post__tag-icon {
	flex-shrink: 0;
}

.hm-post .hm-post__tag:hover .hm-post__tag-icon {
	stroke: #fff !important;
	color: #fff !important;
}

/* תגית קהילה + כפתור X לדיווח */
.hm-post .hm-post__tag-chip {
	display: inline-flex !important;
	align-items: center !important;
	max-width: 100% !important;
	border-radius: 999px !important;
	background: #f2f2f2 !important;
	border: 1px solid transparent !important;
	transition: background 0.2s ease, border-color 0.2s ease;
	line-height: 1.3 !important;
}

.hm-post .hm-post__tag-chip:hover {
	background: #7a2053 !important;
	border-color: #7a2053 !important;
}

.hm-post .hm-post__tag-chip .hm-post__tag {
	background: transparent !important;
	border: 0 !important;
	padding: 7px 4px 7px 12px !important;
}

.hm-post .hm-post__tag-chip:hover .hm-post__tag,
.hm-post .hm-post__tag-chip:hover .hm-post__tag-icon {
	color: #fff !important;
	stroke: #fff !important;
}

.hm-post .hm-post__tag-flag {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	width: 22px !important;
	height: 22px !important;
	margin: 0 4px 0 6px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: rgba(0, 0, 0, 0.08) !important;
	color: #666 !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: none !important;
	line-height: 1 !important;
	transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.hm-post .hm-post__tag-chip:hover .hm-post__tag-flag {
	background: rgba(255, 255, 255, 0.22) !important;
	color: #fff !important;
}

.hm-post .hm-post__tag-flag:hover {
	background: rgba(203, 30, 83, 0.95) !important;
	color: #fff !important;
}

.hm-post .hm-post__tag-flag:disabled {
	opacity: 0.55 !important;
	cursor: wait !important;
}

.hm-post .hm-post__tag-flag svg {
	display: block !important;
	pointer-events: none !important;
}

/* === הוספת ז'אנר/סוג ע״י קהילה - !important נגד דריסה === */
.hm-post .hm-post__tag-add-wrap {
	position: relative !important;
	display: inline-flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	vertical-align: top !important;
	z-index: 5 !important;
}

.hm-post .hm-post__tag--add {
	background: #fff !important;
	border: 1px dashed rgba(203, 30, 83, 0.45) !important;
	color: #cb1e53 !important;
	cursor: pointer !important;
	font-family: "פולין", "Polin", sans-serif !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: none !important;
	min-height: unset !important;
	height: auto !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	line-height: 1.3 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.hm-post .hm-post__tag--add:hover,
.hm-post .hm-post__tag--add[aria-expanded="true"] {
	background: #cb1e53 !important;
	border-color: #cb1e53 !important;
	border-style: solid !important;
	color: #fff !important;
}

.hm-post .hm-post__tag--add:hover .hm-post__tag-icon,
.hm-post .hm-post__tag--add[aria-expanded="true"] .hm-post__tag-icon {
	stroke: #fff !important;
	color: #fff !important;
}

.hm-post .hm-post__genre-panel {
	position: absolute !important;
	top: calc(100% + 8px) !important;
	right: 0 !important;
	left: auto !important;
	width: min(320px, calc(100vw - 32px)) !important;
	padding: 12px !important;
	border-radius: 14px !important;
	border: 1px solid rgba(32, 33, 90, 0.14) !important;
	background: #fff !important;
	box-shadow: 0 12px 32px rgba(32, 33, 90, 0.16) !important;
	z-index: 40 !important;
	box-sizing: border-box !important;
	direction: rtl !important;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-post .hm-post__genre-panel[hidden] {
	display: none !important;
}

.hm-post .hm-post__genre-panel-hint {
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-size: 0.78rem !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	color: #777 !important;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-post .hm-post__genre-panel-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
}

.hm-post input.hm-post__genre-search,
.hm-post .hm-post__genre-search {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 42px !important;
	min-height: 42px !important;
	margin: 0 0 10px !important;
	padding: 0 12px !important;
	border: 1px solid rgba(32, 33, 90, 0.18) !important;
	border-radius: 10px !important;
	background: #f7f7fb !important;
	color: #1a1a2e !important;
	font-family: "פולין", "Polin", sans-serif !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	box-shadow: none !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-sizing: border-box !important;
	text-align: right !important;
	direction: rtl !important;
}

.hm-post input.hm-post__genre-search::placeholder {
	color: #9a9ab0 !important;
	opacity: 1 !important;
}

.hm-post input.hm-post__genre-search:focus {
	border-color: #cb1e53 !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px rgba(203, 30, 83, 0.18) !important;
}

.hm-post .hm-post__genre-results {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	max-height: 220px !important;
	overflow-y: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	scrollbar-width: thin !important;
}

.hm-post button.hm-post__genre-option {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 40px !important;
	height: auto !important;
	margin: 0 !important;
	padding: 8px 10px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: #20215a !important;
	font-family: "פולין", "Polin", sans-serif !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: right !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.hm-post button.hm-post__genre-option:hover,
.hm-post button.hm-post__genre-option:focus-visible {
	background: rgba(203, 30, 83, 0.1) !important;
	color: #cb1e53 !important;
	outline: none !important;
}

.hm-post button.hm-post__genre-option.is-custom {
	color: #cb1e53 !important;
	border: 1px dashed rgba(203, 30, 83, 0.35) !important;
	background: rgba(203, 30, 83, 0.05) !important;
}

.hm-post .hm-post__genre-empty {
	margin: 0 !important;
	padding: 8px 4px !important;
	font-size: 0.82rem !important;
	color: #888 !important;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-post .hm-post__genre-status {
	margin: 8px 0 0 !important;
	padding: 0 !important;
	min-height: 1.2em !important;
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	color: #555 !important;
	font-family: "פולין", "Polin", sans-serif !important;
}

.hm-post .hm-post__genre-status.is-ok {
	color: #1a7a3a !important;
}

.hm-post .hm-post__genre-status.is-err {
	color: #b00020 !important;
}

html[data-hm-theme="dark"] .hm-post__tags {
	background: #201f42 !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tag {
	background: rgba(255, 255, 255, 0.08) !important;
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tag-chip {
	background: rgba(255, 255, 255, 0.08) !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tag-flag {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #c8c6d8 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tag--add {
	background: transparent !important;
	border-color: rgba(203, 30, 83, 0.55) !important;
	color: #ff6b9a !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tag--add:hover,
html[data-hm-theme="dark"] .hm-post .hm-post__tag--add[aria-expanded="true"] {
	background: #cb1e53 !important;
	color: #fff !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__genre-panel {
	background: #16162e !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45) !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__genre-panel-hint,
html[data-hm-theme="dark"] .hm-post .hm-post__genre-empty,
html[data-hm-theme="dark"] .hm-post .hm-post__genre-status {
	color: #a8a8bd !important;
}

html[data-hm-theme="dark"] .hm-post input.hm-post__genre-search {
	background: #0f0f22 !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #e8e8ef !important;
}

html[data-hm-theme="dark"] .hm-post button.hm-post__genre-option {
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post button.hm-post__genre-option:hover {
	background: rgba(203, 30, 83, 0.2) !important;
	color: #ff6b9a !important;
}

/* === באנרים === */
.hm-post__banner {
	margin: 16px 0;
	text-align: center;
}

.hm-post__banner img {
	max-width: 100%;
	height: auto;
	border-radius: var(--hm-radius);
}

.hm-post__banner--sidebar img {
	width: 100%;
	max-height: 420px;
	object-fit: contain;
}

/* === תוכן === */
.hm-post__content {
	font-size: 1rem !important;
	line-height: 1.75 !important;
	color: var(--hm-text) !important;
	margin: 20px 0;
}

.hm-post__content p {
	margin: 0 0 1em !important;
}

.hm-post__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.hm-post__media--magazine-inline {
	margin-top: 8px;
}

/* כתבת מגזין - תמונה ראשית בפרופורציה טבעית (מודעות הופעה וכו') */
.hm-post--magazine .hm-post__media--image img {
	aspect-ratio: auto;
	object-fit: initial;
	height: auto;
}

.hm-post--magazine .hm-post__content--article {
	font-size: 1.05rem !important;
}

.hm-post--magazine .hm-post__content--article p:first-child {
	font-size: 1.1rem !important;
}

/* === CTA === */
.hm-post__cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 24px 0;
	padding: 16px;
	background: #fff;
	border-radius: var(--hm-radius);
	border: 1px solid var(--hm-border);
}

/* === הופעות קרובות (סגנון YouTube) === */
.hm-post__tickets {
	margin: 12px 0 16px;
	padding: 14px 0 0;
	border-top: 1px solid var(--hm-border);
}

.hm-post__tickets-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
}

.hm-post__tickets-info {
	display: inline-flex;
	color: var(--hm-muted);
	flex-shrink: 0;
}

.hm-post__tickets-title {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--hm-text) !important;
}

.hm-post__tickets-body--split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 20px 28px;
	align-items: start;
}

.hm-post__tickets-featured {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.hm-post__tickets-date {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 52px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--hm-border);
	background: #fff;
	text-align: center;
	line-height: 1;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hm-post__tickets-date-month {
	display: block;
	padding: 5px 4px;
	background: #606060;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
}

.hm-post__tickets-date-day {
	display: block;
	padding: 8px 4px 9px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--hm-text);
}

.hm-post__tickets-featured-main {
	flex: 1 1 160px;
	min-width: 0;
}

.hm-post__tickets-featured-headline {
	margin: 0 0 4px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
	color: var(--hm-text) !important;
}

.hm-post__tickets-featured-meta {
	margin: 0 0 6px !important;
	font-size: 0.88rem !important;
	line-height: 1.45 !important;
	color: var(--hm-muted) !important;
}

.hm-post .hm-post__tickets-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	color: #065fd4 !important;
	font-size: 0.88rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	line-height: 1.3 !important;
	border: none !important;
	background: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.hm-post .hm-post__tickets-link:hover {
	color: #034ea2 !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

.hm-post__tickets-ext {
	flex-shrink: 0;
}

.hm-post .hm-post__tickets-cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	margin-inline-start: auto !important;
	align-self: center !important;
	color: #065fd4 !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	border: none !important;
	background: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.hm-post .hm-post__tickets-cta:hover {
	color: #034ea2 !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

.hm-post__tickets-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hm-post__tickets-row {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr) auto;
	gap: 10px 12px;
	align-items: baseline;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0.88rem;
	line-height: 1.4;
}

.hm-post__tickets-row-date {
	color: var(--hm-text);
	font-weight: 500;
	white-space: nowrap;
}

.hm-post__tickets-row-place {
	color: var(--hm-muted);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hm-post .hm-post__tickets-link--row {
	justify-self: end;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.hm-post__tickets-body--split {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.hm-post .hm-post__tickets-cta {
		margin-inline-start: 0 !important;
		width: 100%;
		justify-content: flex-start !important;
	}
}

@media (max-width: 520px) {
	.hm-post__tickets-row {
		grid-template-columns: 4.2rem minmax(0, 1fr);
		gap: 4px 10px;
	}

	.hm-post .hm-post__tickets-link--row {
		grid-column: 2;
		justify-self: start;
	}
}

html[data-hm-theme="dark"] .hm-post__tickets {
	border-top-color: rgba(255, 255, 255, 0.12);
}

html[data-hm-theme="dark"] .hm-post__tickets-title,
html[data-hm-theme="dark"] .hm-post__tickets-featured-headline,
html[data-hm-theme="dark"] .hm-post__tickets-row-date,
html[data-hm-theme="dark"] .hm-post__tickets-date-day {
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post__tickets-info,
html[data-hm-theme="dark"] .hm-post__tickets-featured-meta,
html[data-hm-theme="dark"] .hm-post__tickets-row-place {
	color: #a8a8bd !important;
}

html[data-hm-theme="dark"] .hm-post__tickets-date {
	background: #201f42;
	border-color: rgba(255, 255, 255, 0.14);
}

html[data-hm-theme="dark"] .hm-post__tickets-date-month {
	background: #4a4968;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tickets-link,
html[data-hm-theme="dark"] .hm-post .hm-post__tickets-cta {
	color: #8ab4f8 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__tickets-link:hover,
html[data-hm-theme="dark"] .hm-post .hm-post__tickets-cta:hover {
	color: #aecbfa !important;
}

.hm-post .hm-post__newsletter {
	display: inline-block !important;
	padding: 12px 20px !important;
	background: #c80553 !important;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 999px !important;
	text-align: center !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	border: none !important;
	box-shadow: none !important;
	line-height: 1.4 !important;
}

.hm-post .hm-post__newsletter:hover {
	background: var(--hm-primary) !important;
	color: #fff !important;
}

.hm-post .hm-post__copyright {
	font-size: 0.95rem !important;
	color: var(--hm-primary) !important;
	text-decoration: none !important;
	text-align: center !important;
}

.hm-post .hm-post__copyright:hover {
	text-decoration: underline !important;
}

.hm-post__share-block {
	margin: 20px 0;
}

.hm-post__share-block .hm-share__title,
.hm-post__share-block .hm-share__btn,
.hm-post__share-block .hm-share__url {
	font-family: "פולין", sans-serif !important;
}

/* === תגובות - !important נגד דריסה מ-Elementor / תבנית === */
.hm-post__comments {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 2px solid var(--hm-border);
}

.hm-post__comments .comments-area,
.hm-post__comments .comment-respond,
.hm-post__comments .comment-form,
.hm-post__comments .comment-list {
	font-family: "פולין", sans-serif !important;
}

.hm-post .hm-post__comments .comment-reply-title,
.hm-post .hm-post__comments .comments-title {
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--hm-primary) !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
}

.hm-post .hm-post__comments .comment-reply-title small {
	font-size: 0.85rem !important;
	font-weight: 400 !important;
}

.hm-post .hm-post__comments .logged-in-as,
.hm-post .hm-post__comments .comment-notes,
.hm-post .hm-post__comments .must-log-in {
	font-size: 0.85rem !important;
	color: var(--hm-muted) !important;
	line-height: 1.5 !important;
	margin: 0 0 14px !important;
}

.hm-post .hm-post__comments .logged-in-as a,
.hm-post .hm-post__comments .comment-notes a,
.hm-post .hm-post__comments .must-log-in a {
	color: var(--hm-primary) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

.hm-post .hm-post__comments .logged-in-as a:hover,
.hm-post .hm-post__comments .comment-notes a:hover,
.hm-post .hm-post__comments .must-log-in a:hover {
	color: var(--hm-accent) !important;
}

.hm-post .hm-post__comments .comment-form-comment label {
	display: block !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	color: var(--hm-text) !important;
	margin-bottom: 8px !important;
}

.hm-post .hm-post__comments .comment-form-comment .required {
	color: #c80553 !important;
}

.hm-post .hm-post__comments textarea#comment,
.hm-post .hm-post__comments .comment-form input[type="text"],
.hm-post .hm-post__comments .comment-form input[type="email"],
.hm-post .hm-post__comments .comment-form input[type="url"] {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 12px 14px !important;
	margin: 0 !important;
	border: 1px solid var(--hm-border) !important;
	border-radius: var(--hm-radius) !important;
	background: #fff !important;
	color: var(--hm-text) !important;
	font-size: 0.95rem !important;
	line-height: 1.5 !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hm-post .hm-post__comments textarea#comment {
	min-height: 120px !important;
	resize: vertical !important;
}

.hm-post .hm-post__comments textarea#comment:focus,
.hm-post .hm-post__comments .comment-form input:focus {
	outline: none !important;
	border-color: var(--hm-primary) !important;
	box-shadow: 0 0 0 3px rgba(38, 35, 90, 0.15) !important;
}

.hm-post .hm-post__comments .form-submit {
	margin: 16px 0 0 !important;
	padding: 0 !important;
	text-align: center !important;
}

/* CAPTCHA 4WP משאיר submit מקורי עם display:none - לא לדרוס אותו */
.hm-post .hm-post__comments #commentform>input.submit:not(.c4wp-submit) {
	display: none !important;
	visibility: hidden !important;
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border: none !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.hm-post .hm-post__comments .form-submit input[type="submit"],
.hm-post .hm-post__comments #commentform>input.submit.c4wp-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	min-width: 140px !important;
	padding: 11px 28px !important;
	border: none !important;
	border-radius: 999px !important;
	background: var(--hm-text) !important;
	color: #fff !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: background 0.2s ease, transform 0.15s ease;
	width: auto !important;
	height: auto !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.hm-post .hm-post__comments .form-submit input[type="submit"] {
	margin: 0 !important;
}

.hm-post .hm-post__comments #commentform>input.submit.c4wp-submit {
	margin: 16px 0 0 !important;
}

.hm-post .hm-post__comments .form-submit input[type="submit"]:hover,
.hm-post .hm-post__comments #commentform>input.submit.c4wp-submit:hover {
	background: var(--hm-primary) !important;
	color: #fff !important;
	transform: translateY(-1px) !important;
}

.hm-post .hm-post__comments .form-submit input[type="submit"]:focus-visible,
.hm-post .hm-post__comments #commentform>input.submit.c4wp-submit:focus-visible {
	outline: 2px solid var(--hm-accent) !important;
	outline-offset: 3px !important;
}

.hm-post .hm-post__comments .comment-list {
	list-style: none !important;
	margin: 24px 0 0 !important;
	padding: 0 !important;
}

.hm-post .hm-post__comments .comment-list .comment {
	margin: 0 0 16px !important;
	padding: 0 0 16px !important;
	border-bottom: 1px solid var(--hm-border) !important;
}

.hm-post .hm-post__comments .comment-body {
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
}

.hm-post .hm-post__comments .comment-author {
	font-weight: 600 !important;
	color: var(--hm-primary) !important;
}

.hm-post .hm-post__comments .comment-metadata {
	font-size: 0.8rem !important;
	color: var(--hm-muted) !important;
	margin-bottom: 6px !important;
}

.hm-post .hm-post__comments .comment-metadata a {
	color: var(--hm-muted) !important;
	text-decoration: none !important;
}

.hm-post .hm-post__comments .comment-metadata a:hover {
	color: var(--hm-accent) !important;
}

.hm-post .hm-post__comments .comment-content p {
	margin: 0 0 8px !important;
}

.hm-post .hm-post__comments .reply a,
.hm-post .hm-post__comments #cancel-comment-reply-link {
	font-size: 0.85rem !important;
	color: var(--hm-primary) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

.hm-post .hm-post__comments .reply a:hover,
.hm-post .hm-post__comments #cancel-comment-reply-link:hover {
	color: var(--hm-accent) !important;
}

/* === ניווט === */
.hm-post__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 32px;
}

.hm-post .hm-post__nav-link {
	display: block !important;
	padding: 14px !important;
	background: #f9f9f9 !important;
	border-radius: var(--hm-radius) !important;
	text-decoration: none !important;
	color: var(--hm-primary) !important;
	border: 1px solid var(--hm-border) !important;
	transition: border-color 0.2s ease;
	box-shadow: none !important;
}

.hm-post .hm-post__nav-link:hover {
	border-color: var(--hm-accent) !important;
}

.hm-post__nav-label {
	display: block !important;
	font-size: 0.8rem !important;
	color: var(--hm-muted) !important;
	margin-bottom: 4px !important;
}

.hm-post__nav-title {
	display: block !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
}

.hm-post__nav-link--next {
	text-align: left;
}

/* === סיידבר === */
.hm-post__sidebar {
	position: static;
	min-width: 0;
}

.hm-post__sidebar .hm-video-sidebar {
	max-width: 100% !important;
	width: 100% !important;
}

/* === רספונסיבי === */
@media (max-width: 1280px) {
	.hm-post {
		--hm-sidebar-w: 320px;
		padding: 16px 16px 40px;
	}
}

@media (max-width: 1100px) {
	.hm-post__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hm-post__main {
		order: 1;
	}

	.hm-post__sidebar {
		position: static;
		order: 2;
		top: auto;
	}
}

@media (max-width: 768px) {
	.hm-post {
		padding: 12px 14px 36px;
	}

	.hm-post__author-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.hm-post__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.hm-post .hm-post__action,
	.hm-post .hm-post__cmp .cmp-play-btn,
	.hm-post .hm-save-btn {
		width: 42px !important;
		justify-content: center !important;
	}

	.hm-post .hm-post__cmp .cmp-play-btn {
		width: 48px !important;
	}

	.hm-post .hm-post__action--now-playing,
	.hm-post .hm-post__action--queued {
		width: auto !important;
	}

	.hm-post__share-quick {
		min-width: 160px;
	}

	.hm-post .hm-post__share-btn {
		width: 100% !important;
		padding: 9px 12px !important;
		font-size: 0.85rem !important;
		gap: 6px !important;
	}

	.hm-post__video-play {
		width: 56px !important;
		height: 56px !important;
	}

	.hm-post__banner--sidebar img {
		max-height: 320px;
	}
}

@media (max-width: 480px) {
	.hm-post {
		padding: 10px 10px 28px;
	}

	.hm-post__title {
		font-size: 1.15rem !important;
	}

	.hm-post__actions {
		gap: 6px;
	}

	.hm-post__share-quick {
		right: auto;
		left: 0;
	}

	.hm-post__tags-list {
		gap: 6px;
	}

	.hm-post .hm-post__tag {
		font-size: 0.8rem !important;
		padding: 6px 10px !important;
	}

	.hm-post__nav {
		grid-template-columns: 1fr;
	}

	.hm-post__playlist-row {
		flex-direction: column;
	}

	.hm-post .hm-post__playlist-btn {
		width: 100% !important;
	}

	.hm-post__author img {
		width: 40px;
		height: 40px;
	}
}

/* מסכים זעירים (Qin F22 Pro וכד') - סרטון מקצה לקצה כמו יוטיוב */
@media (max-width: 360px) {
	.hm-post {
		padding: 0 0 28px;
	}

	.hm-post__main>.hm-post__media {
		border-radius: 0;
		margin-bottom: 12px;
	}

	.hm-post__main> :not(.hm-post__media),
	.hm-post__sidebar {
		padding-inline: 10px;
		box-sizing: border-box;
	}

	.hm-post__main>.hm-post__header--program-top {
		padding-top: 10px;
	}
}

@media (min-width: 1400px) {
	.hm-post {
		--hm-sidebar-w: 360px;
	}
}

/* ══════════════════════════════════════════
   הוסף לפלייליסט - dropdown
   ══════════════════════════════════════════ */
.hm-post__playlist-add-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.hm-post__action--add-playlist {
	position: relative !important;
}

.hm-post__action--add-playlist .hm-post__action-crown {
	position: absolute;
	top: -3px;
	right: -3px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 50%;
	background: #e83e8c;
	color: #ffd700;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

.hm-post__action--add-playlist .hm-post__action-crown svg {
	width: 10px !important;
	height: 7px !important;
	stroke: currentColor !important;
	color: #ffd700 !important;
}

.hm-post__action--add-playlist.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.hm-post__playlist-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 1000;
	width: 300px;
	background: #fff;
	border: 1px solid #e8e8ee;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	animation: hmPlDropIn 0.2s ease-out;
}

.hm-post__playlist-dropdown[hidden] {
	display: none;
}

@keyframes hmPlDropIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

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

.hm-post__playlist-dropdown-inner {
	padding: 0.85rem;
}

.hm-post__playlist-dropdown-title {
	font-family: "פולין", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	color: #26235a;
	margin: 0 0 0.6rem;
}

.hm-post__playlist-dropdown-list {
	max-height: 200px;
	overflow-y: auto;
	margin-bottom: 0.65rem;
}

.hm-post__playlist-dropdown-loading,
.hm-post__playlist-dropdown-empty {
	font-size: 0.82rem;
	color: #999;
	text-align: center;
	padding: 0.6rem;
	margin: 0;
}

/* פריטי רשימה + אינפוט/כפתור - !important נגד דריסה מ-Elementor */
.hm-post .hm-post__playlist-dropdown-item {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	padding: 0.5rem 0.65rem !important;
	margin: 0 !important;
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid #f5f5f5 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer !important;
	text-align: right !important;
	transition: background 0.15s;
	font-family: "פולין", sans-serif !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: 1.4 !important;
	min-height: unset !important;
	height: auto !important;
	color: inherit !important;
	text-decoration: none !important;
}

.hm-post .hm-post__playlist-dropdown-item:last-child {
	border-bottom: none !important;
}

.hm-post .hm-post__playlist-dropdown-item:hover:not(:disabled) {
	background: #fafafe !important;
	color: inherit !important;
	transform: none !important;
}

.hm-post .hm-post__playlist-dropdown-item.is-in,
.hm-post .hm-post__playlist-dropdown-item:disabled {
	background: #f0faf4 !important;
	cursor: default !important;
	opacity: 1 !important;
}

.hm-post .hm-post__playlist-dropdown-item-name {
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	color: #333 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 180px;
}

.hm-post .hm-post__playlist-dropdown-item-badge {
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	color: #c80553 !important;
	white-space: nowrap;
}

.hm-post .hm-post__playlist-dropdown-item.is-in .hm-post__playlist-dropdown-item-badge {
	color: #22c55e !important;
}

.hm-post__playlist-dropdown-new {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	border-top: 1px solid #eee;
	padding-top: 0.6rem;
}

.hm-post .hm-post__playlist-dropdown-new input {
	flex: 1;
	padding: 0.4rem 0.6rem !important;
	font-family: "פולין", sans-serif !important;
	font-size: 0.82rem !important;
	border: 1.5px solid #ddd !important;
	border-radius: 8px !important;
	outline: none !important;
	min-width: 0;
	background: #fff !important;
	color: var(--hm-text) !important;
	box-shadow: none !important;
	height: auto !important;
	line-height: 1.4 !important;
	margin: 0 !important;
}

.hm-post .hm-post__playlist-dropdown-new input:focus {
	border-color: #c80553 !important;
}

.hm-post .hm-post__playlist-dropdown-new button {
	flex: 0 0 auto;
	background: #c80553 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	width: 32px !important;
	height: 32px !important;
	min-height: 32px !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: background 0.2s;
	box-shadow: none !important;
	font-family: "פולין", sans-serif !important;
}

.hm-post .hm-post__playlist-dropdown-new button svg {
	stroke: currentColor !important;
	flex-shrink: 0;
}

.hm-post .hm-post__playlist-dropdown-new button:disabled {
	opacity: 0.4 !important;
	cursor: not-allowed !important;
}

.hm-post .hm-post__playlist-dropdown-new button:hover:not(:disabled) {
	background: #a50447 !important;
	color: #fff !important;
	transform: none !important;
}

.hm-post__playlist-dropdown-status {
	font-family: "פולין", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	text-align: center;
	padding: 0.35rem 0;
	margin: 0.4rem 0 0;
}

.hm-post__playlist-dropdown-status.is-success {
	color: #22c55e;
}

.hm-post__playlist-dropdown-status.is-error {
	color: #be123c;
}

@media (max-width: 640px) {
	.hm-post__playlist-dropdown {
		width: 260px;
		right: auto;
		left: 0;
	}
}

/* ══════════════════════════════════════════
   מצב כהה - טקסטים בהירים על רקע כהה
   ══════════════════════════════════════════ */
html[data-hm-theme="dark"] .hm-post {
	--hm-border: rgba(255, 255, 255, 0.14);
	color: #e8e8ef;
}

html[data-hm-theme="dark"] .hm-post__title,
html[data-hm-theme="dark"] .hm-post__author,
html[data-hm-theme="dark"] .hm-post__singers-trigger,
html[data-hm-theme="dark"] .hm-post__share-toggle {
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post__share-toggle {
	background: rgba(255, 255, 255, 0.1) !important;
}

html[data-hm-theme="dark"] .hm-post__share-toggle svg {
	stroke: currentColor !important;
}

html[data-hm-theme="dark"] .hm-post__share-quick {
	background: #1e1e2a;
	border-color: rgba(255, 255, 255, 0.14);
}

html[data-hm-theme="dark"] .hm-post .hm-post__share-btn:hover {
	background: rgba(255, 255, 255, 0.08) !important;
}

html[data-hm-theme="dark"] .hm-post__content,
html[data-hm-theme="dark"] .hm-post__content p {
	color: #dcdce7 !important;
}

html[data-hm-theme="dark"] .hm-post__meta,
html[data-hm-theme="dark"] .hm-post__time,
html[data-hm-theme="dark"] .hm-post__nav-label {
	color: #a8a8bd !important;
}

/* תגובות */
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-reply-title,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comments-title,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-author {
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form-comment label,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-body,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-content p {
	color: #dcdce7 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments .logged-in-as,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-notes,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .must-log-in,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-metadata,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-metadata a {
	color: #a8a8bd !important;
}

/* חלונית פלייליסט */
html[data-hm-theme="dark"] .hm-post__playlist {
	background: #201f42;
	border-color: rgba(255, 255, 255, 0.12);
}

html[data-hm-theme="dark"] .hm-post__playlist-label {
	color: #eceaf7 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__playlist-select {
	background: #16162e !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #e8e8ef !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__playlist-select option {
	background: #16162e;
	color: #e8e8ef;
}

html[data-hm-theme="dark"] .hm-post__playlist-hint {
	color: #a8a8bd !important;
}

/* אינפוטים באזור תגובות */
html[data-hm-theme="dark"] .hm-post .hm-post__comments textarea#comment,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form input[type="text"],
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form input[type="email"],
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form input[type="url"] {
	background: #16162e !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	color: #e8e8ef !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments textarea#comment::placeholder,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form input::placeholder {
	color: #8a8aa0 !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments textarea#comment:focus,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form input:focus {
	border-color: #6b68b8 !important;
	box-shadow: 0 0 0 3px rgba(120, 116, 200, 0.25) !important;
}

/* מיכלי טופס התגובות - רקע כהה במקום לבן */
html[data-hm-theme="dark"] .hm-post .hm-post__comments,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comments-area,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-respond,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-form,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-list,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-body,
html[data-hm-theme="dark"] .hm-post .hm-post__comments article,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-content,
html[data-hm-theme="dark"] .hm-post .hm-post__comments p,
html[data-hm-theme="dark"] .hm-post .hm-post__comments ol,
html[data-hm-theme="dark"] .hm-post .hm-post__comments ul,
html[data-hm-theme="dark"] .hm-post .hm-post__comments li {
	background: transparent !important;
	box-shadow: none !important;
}

/* כרטיס תגובה קיימת */
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-list .comment {
	border-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-content p {
	color: #dcdce7 !important;
}

/* קישורים כלליים בטופס */
html[data-hm-theme="dark"] .hm-post .hm-post__comments .logged-in-as a,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .comment-notes a,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .must-log-in a,
html[data-hm-theme="dark"] .hm-post .hm-post__comments .reply a,
html[data-hm-theme="dark"] .hm-post .hm-post__comments #cancel-comment-reply-link {
	color: #b7b4ea !important;
}

/* כפתור שליחה */
html[data-hm-theme="dark"] .hm-post .hm-post__comments .form-submit input[type="submit"],
html[data-hm-theme="dark"] .hm-post .hm-post__comments #commentform>input.submit.c4wp-submit {
	background: #c80553 !important;
	color: #fff !important;
}

html[data-hm-theme="dark"] .hm-post .hm-post__comments .form-submit input[type="submit"]:hover,
html[data-hm-theme="dark"] .hm-post .hm-post__comments #commentform>input.submit.c4wp-submit:hover {
	background: #e0225f !important;
}