.jno-live-search {
	display: flex;
	gap: 24px;
	width: 100%;
}

.jno-live-search,
.jno-live-search button,
.jno-live-search input,
.jno-live-search select,
.jno-live-search textarea,
.jno-dashboard-search,
.jno-dashboard-search button,
.jno-dashboard-search input,
.jno-dashboard-search select,
.jno-dashboard-search textarea {
	font-family: "Inter", sans-serif;
}

.jno-dashboard-search {
	--jno-dashboard-green: #23A455;
	--jno-dashboard-green-soft: #63d98c;
	position: relative;
	width: 100%;
}

.jno-dashboard-search__hero {
	position: relative;
	overflow: visible;
	padding: 40px 20px 120px;
	border-radius: 32px;
	background: linear-gradient(135deg, var(--jno-dashboard-green) 0%, #2fbb61 100%);
}

.jno-dashboard-search__hero-shape {
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	filter: blur(2px);
}

.jno-dashboard-search__hero-shape--left {
	width: 320px;
	height: 320px;
	left: -120px;
	bottom: -110px;
}

.jno-dashboard-search__hero-shape--right {
	width: 360px;
	height: 360px;
	top: -150px;
	right: -110px;
	background: rgba(255, 255, 255, 0.2);
}

.jno-dashboard-search__hero-inner {
	position: relative;
	z-index: 3;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}

.jno-dashboard-search__welcome {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.96);
	font-size: clamp(15px, 1.6vw, 18px);
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.jno-dashboard-search__headline {
	margin: 0 0 28px;
	color: #ffffff;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.12;
	font-weight: 750;
	letter-spacing: -0.03em;
}

.jno-dashboard-search__search {
	position: relative;
	display: block;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.jno-dashboard-search__input {
	width: 100% !important;
	height: 68px;
	padding: 0 64px 0 22px !important;
	border: 0 !important;
	border-radius: 18px !important;
	background: #ffffff;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
	color: #111827;
	font-size: 18px;
	box-sizing: border-box;
}

.jno-dashboard-search__input:focus {
	outline: 3px solid rgba(255, 255, 255, 0.32);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.jno-dashboard-search__input::placeholder {
	color: #9ca3af;
}

.jno-dashboard-search__search-icon {
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	pointer-events: none;
}

.jno-dashboard-search__search-icon svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jno-dashboard-search__clear {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #9ca3af;
	transition: background 0.18s ease, color 0.18s ease;
}

.jno-dashboard-search__clear:hover,
.jno-dashboard-search__clear:focus {
	background: #f3f4f6;
	color: #4b5563;
	outline: none;
}

.jno-dashboard-search__clear svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jno-dashboard-search__suggestions {
	position: absolute;
	top: calc(100% + 12px);
	left: 18px;
	right: 18px;
	z-index: 6;
	padding: 8px 0;
	border: 1px solid #d1d5db;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
	text-align: left;
}

.jno-dashboard-search__suggestions-list {
	display: flex;
	flex-direction: column;
}

.jno-dashboard-search__suggestion {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px 20px;
	color: #111827;
	text-decoration: none;
	transition: background 0.18s ease;
}

.jno-dashboard-search__suggestion + .jno-dashboard-search__suggestion {
	border-top: 1px solid #eef2f7;
}

.jno-dashboard-search__suggestion:hover,
.jno-dashboard-search__suggestion:focus {
	background: #f8fafc;
	outline: none;
}

.jno-dashboard-search__suggestion-icon {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	color: #9ca3af;
}

.jno-dashboard-search__suggestion-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jno-dashboard-search__suggestion-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.jno-dashboard-search__suggestion-title {
	display: block;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 400;
	color: #1f2937;
	word-break: break-word;
}

.jno-dashboard-search__suggestion-category {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--jno-dashboard-green);
}

.jno-dashboard-search__suggestions-state {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 20px;
	color: #4b5563;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.jno-dashboard-search__suggestions-spinner {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	border: 2px solid #d1d5db;
	border-top-color: var(--jno-dashboard-green);
	animation: jno-live-search-spin 0.8s linear infinite;
	display: inline-block;
}

.jno-dashboard-search__cards-shell {
	position: relative;
	z-index: 2;
	max-width: 1180px;
	margin: -84px auto 0;
	padding: 0 18px 18px;
}

.jno-dashboard-search__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.jno-dashboard-search__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 220px;
	padding: 30px 28px;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	color: #111827;
	text-align: center;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.jno-dashboard-search__card:hover,
.jno-dashboard-search__card:focus {
	transform: translateY(-4px);
	border-color: rgba(35, 164, 85, 0.28);
	box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
	outline: none;
}

.jno-dashboard-search__card[hidden] {
	display: none !important;
}

.jno-dashboard-search__card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.jno-dashboard-search__card-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.28;
	font-weight: 700;
	color: #111827;
	text-wrap: balance;
}

.jno-dashboard-search__card-count {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--jno-dashboard-green);
}

.jno-dashboard-search__card-update {
	font-size: 14px;
	line-height: 1.3;
	color: #6b7280;
}

.jno-dashboard-search__empty {
	margin-top: 18px;
	padding: 28px 24px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	color: #374151;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

.jno-live-search__mobile-actions,
.jno-live-search__mobile-overlay,
.jno-live-search__mobile-panel-header {
	display: none;
}

body.jno-live-search-body-open {
	overflow: hidden;
}


.jno-live-search__left {
	flex: 0 0 40%;
	max-width: 40%;
	background: #10a45121;
	padding: 0px 20px 20px 20px;
	border-radius: 16px;
	box-sizing: border-box;
	max-height: 80vh;
	overflow-y: auto;
	border: 1px solid #10a4510a;
    box-shadow: 0 5px 8px #10a4513d;
}

.jno-live-search__results {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.jno-live-search__see-more-wrap {
	margin-top: -2px;
}

.jno-live-search__see-more {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border: 1px solid #23A455;
	border-radius: 14px;
	background: #ffffff;
	color: #23A455;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.jno-live-search__see-more:hover,
.jno-live-search__see-more:focus {
	background: #23A455;
	color: #ffffff;
	outline: none;
}

.jno-live-search__see-more-count {
	font-size: 12px;
	font-weight: 600;
	opacity: 0.85;
}

.jno-live-search__right {
	flex: 0 0 60%;
	max-width: 60%;
	background: #ffffff;
	padding: 20px;
	border-radius: 16px;
	box-sizing: border-box;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.jno-live-search__search {
	position: sticky;
	top: 0;
	background: #e1f3e9;
	z-index: 5;
    padding: 12px 0px;
}

.jno-live-search__input {
	width: 100%!important;
	padding: 14px 16px!important;;
	border: 1px solid #7A7A7A!important;;
	border-radius: 50px!important;;
	font-size: 16px;
	outline: none;
	box-sizing: border-box;
}

.jno-live-search__input:focus {
	transition: all 0.2s ease;
	border: 2px solid #27a55a!important;

}

.jno-accordion {
	background: #ffffff;
	border: 1px solid #dbe3ea;
	border-radius: 14px;
	overflow: hidden;
}

.jno-accordion.is-open {
	border-color: #111827;
	box-shadow: 0 0 0 1px #111827 inset;
}

.jno-accordion__header {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 15px;
	background: #ffffff;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #111827;
}

.jno-accordion__title {
	display: block;
	min-width: 0;
	text-wrap: balance;
	overflow-wrap: normal;
}

.jno-accordion__icon {
	flex: 0 0 auto;
	font-size: 22px;
	line-height: 1;
	font-weight: 400;
}

.jno-accordion__body {
	padding: 5px 25px;
}

.jno-group-posts {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.jno-subgroup {
	margin-top: 14px;
}

.jno-subgroup__title {
	font-size: 13px;
	font-weight: 700;
	color: #111827;
	opacity: 0.8;
	margin-bottom: 8px;
	padding-left: 8px;
}

.jno-live-search__item {
	border-radius: 10px;
    padding: 5px 30px 5px 30px;
    transition: all 0.2s ease;
    position: relative;
    min-width: 0;
}

.jno-live-search__item::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #242424;
	position: absolute;
	left: 15px;
	top: 17px;
}

.jno-live-search__item.is-active {
	background: #10a45121;
}

.jno-live-search__title {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	font-size: 13px;
	font-weight: 400;
    color: #242424;
	cursor: pointer;
	text-align: left;
	width: 100%;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
	line-height: 1.4;
}


.jno-live-search__title:hover {
	text-decoration: underline;
}

.jno-live-search__detail-title {
	margin: 0 0 18px;
	font-size: 26px;
	line-height: 1.2;
	color: #111827;
	width: 100%;
    text-align: center;
}

.jno-live-search__detail-video {
	margin-bottom: 20px;
}

.jno-video-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 25px;
	background: #ffffff;
}

.jno-video-wrap iframe,
.jno-video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.jno-video-wrap.has-preview .jno-video-iframe {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.jno-video-wrap.has-preview.is-playing .jno-video-iframe {
	opacity: 1;
	pointer-events: auto;
}

.jno-video-poster {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0 !important;
	appearance: none;
	-webkit-appearance: none;
	background: transparent !important;
	box-shadow: none !important;
	outline: none;
	cursor: default;
	overflow: hidden;
}

.jno-video-poster--playable {
	cursor: pointer;
}

.jno-video-poster:hover,
.jno-video-poster:focus,
.jno-video-poster:active {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none;
}

.jno-video-poster::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.06) 42%, rgba(15, 23, 42, 0.18) 100%);
}

.jno-video-wrap.has-preview.is-playing .jno-video-poster {
	opacity: 0;
	pointer-events: none;
}

.jno-video-poster__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.jno-video-poster__play {
	position: relative;
	z-index: 1;
	width: 86px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #ff0000;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jno-video-poster--playable:hover .jno-video-poster__play,
.jno-video-poster--playable:focus .jno-video-poster__play {
	transform: scale(1.04);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.jno-video-poster__play svg {
	width: 68px;
	height: 48px;
	display: block;
	fill: none;
}

.jno-video-poster__play svg path:first-child {
	fill: #ff0000;
}

.jno-video-poster__play svg path:last-child {
	fill: #ffffff;
}

.jno-live-search__detail-description {
	font-size: 16px;
	line-height: 1.7;
	color: #1f2937;
}

.jno-live-search__detail-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 18px;
}

.jno-live-search__detail-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	gap: 6px;
	padding: 7px 12px;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	background: #f3f4f6;
	color: #374151;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	word-break: break-word;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.jno-live-search__detail-tag-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.jno-live-search__detail-tag-icon svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.6;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.jno-live-search__detail-tag-label {
	min-width: 0;
}

a.jno-live-search__detail-tag {
	text-decoration: none;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

a.jno-live-search__detail-tag:hover,
a.jno-live-search__detail-tag:focus {
	background: #e5e7eb;
	border-color: #cbd5e1;
	color: #111827;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
	outline: none;
}

.jno-live-search__post-link {
	margin-top: 24px;
	position: relative;
}

.jno-live-search__post-link-row {
	display: flex;
	align-items: stretch;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
}

.jno-live-search__post-link-url {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 14px;
	border: 0;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #111827;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: copy;
}

.jno-live-search__post-link-url:hover,
.jno-live-search__post-link-url:focus,
.jno-live-search__post-link-url:active {
	background: #f0fdf4;
	color: #111827;
	border-radius: 5px 0 0 5px;
	outline: none;
}

.jno-live-search__post-link-toast {
	position: absolute;
	left: 16px;
	bottom: calc(100% + 12px);
	padding: 10px 14px;
	border-radius: 999px;
	background: #23A455;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(35, 164, 85, 0.24);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.jno-live-search__post-link-toast::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 100%;
	border-width: 7px 6px 0 6px;
	border-style: solid;
	border-color: #23A455 transparent transparent transparent;
}

.jno-live-search__post-link-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.jno-live-search__post-link-toast.is-error {
	background: #b91c1c;
	box-shadow: 0 10px 24px rgba(185, 28, 28, 0.22);
}

.jno-live-search__post-link-toast.is-error::after {
	border-color: #b91c1c transparent transparent transparent;
}

.jno-live-search__post-link-button {
	flex: 0 0 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-left: 1px solid #d1d5db;
	background: #ffffff;
	color: #4b5563;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.jno-live-search__post-link-button:hover,
.jno-live-search__post-link-button:focus {
	background: #23A455;
	border-radius: 0 5px 5px 0;
	color: #ffffff;
}

.jno-live-search__post-link-button svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jno-live-search__empty,
.jno-live-search__loading,
.jno-live-search__video-empty {
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	color: #374151;
	text-align: center;
}

.jno-live-search__empty--actionable {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.jno-live-search__empty-message {
	font-weight: 600;
}

.jno-live-search__retry-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #23A455;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(35, 164, 85, 0.2);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.jno-live-search__retry-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.jno-live-search__retry-button-icon svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.jno-live-search__retry-button:hover,
.jno-live-search__retry-button:focus {
	background: #1e8f4a;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(35, 164, 85, 0.26);
	outline: none;
}


.jno-accordion__title-wrap {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	flex: 1 1 auto;
	min-width: 0;
}

.jno-accordion__count {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
}

.jno-accordion__header:hover .jno-accordion__title,
.jno-accordion__header:hover .jno-accordion__count,
.jno-accordion__header:hover .jno-accordion__icon,
.jno-accordion__header:focus .jno-accordion__title,
.jno-accordion__header:focus .jno-accordion__count,
.jno-accordion__header:focus .jno-accordion__icon {
	color: #ffffff;
	transition: color 0.2s ease;
}

.jno-live-search__item:hover,
.jno-accordion__header:hover,
.jno-accordion__header:focus {
	background: #23A455 !important;
}

.jno-live-search__item:hover .jno-live-search__title {
	color: #ffffff;
}

.jno-live-search__item.is-active {
	background: #23A455;
}

.jno-live-search__item.is-active .jno-live-search__title,
.jno-live-search__item:hover .jno-live-search__title {
	color: #ffffff;
	background: transparent;
}

.jno-live-search__item.is-active::before,
.jno-live-search__item:hover::before {
	background: #ffffff;
}

.jno-accordion.is-active-category {
	border-color: #23A455;
	box-shadow: 0 0 0 1px #23A455 inset;
}

.jno-accordion.is-active-category .jno-accordion__header {
	background: #23A455;
	color: #ffffff;
}

.jno-accordion.is-active-category .jno-accordion__title,
.jno-accordion.is-active-category .jno-accordion__count,
.jno-accordion.is-active-category .jno-accordion__icon {
	color: #ffffff;
}

.jno-live-search__loading-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	width: 100%;
}

.jno-live-search__loading-wrap--results {
	min-height: 180px;
}

.jno-live-search__spinner {
	width: 72px;
	height: 72px;
	border-radius: 999px;
	border: 6px solid #d1d5db;
	border-top-color: #23A455;
	animation: jno-live-search-spin 0.8s linear infinite;
	display: inline-block;
}

@keyframes jno-live-search-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.jno-live-search__content {
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}



.jno-live-search__left {
	scrollbar-width: thin;
	scrollbar-color: #10a45121 transparent;
}

/* Chrome, Edge, Safari */
.jno-live-search__left::-webkit-scrollbar {
	width: 8px;
}

.jno-live-search__left::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 999px;
}

.jno-live-search__left::-webkit-scrollbar-thumb {
	background: #10a45121;
	border-radius: 999px;
}

.jno-live-search__left::-webkit-scrollbar-thumb:hover {
	background: rgba(16, 164, 81, 0.22);
}


.jno-subgroup {
	margin-top: 14px;
}

.jno-subgroup__title {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	margin-bottom: 10px;
	padding-left: 12px;
	border-left: 3px solid #23A455;
	line-height: 1.3;
}

@media (max-width: 991px) {
	.jno-dashboard-search__hero {
		padding: 34px 16px 108px;
		border-radius: 26px;
	}

	.jno-dashboard-search__welcome {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.jno-dashboard-search__headline {
		margin-bottom: 20px;
		font-size: clamp(24px, 5.4vw, 32px);
	}

	.jno-dashboard-search__input {
		height: 60px;
		font-size: 16px;
		border-radius: 16px !important;
	}

	.jno-dashboard-search__suggestions {
		top: calc(100% + 10px);
		left: 14px;
		right: 14px;
		border-radius: 18px;
	}

	.jno-dashboard-search__suggestion {
		padding: 14px 16px;
	}

	.jno-dashboard-search__cards-shell {
		margin-top: -72px;
		padding: 0 12px 12px;
	}

	.jno-dashboard-search__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.jno-dashboard-search__card {
		min-height: 200px;
		padding: 26px 20px;
	}

	.jno-dashboard-search__card-title {
		font-size: 17px;
	}

	.jno-dashboard-search__card-count {
		font-size: 15px;
	}

	.jno-live-search {
		flex-direction: column;
		gap: 16px;
		position: relative;
	}

	.jno-live-search__mobile-actions {
		display: block;
		order: 1;
	}

	.jno-live-search__mobile-toggle {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 14px 18px;
		border: 0;
		border-radius: 16px;
		background: #23A455;
		color: #ffffff;
		box-shadow: 0 12px 28px rgba(35, 164, 85, 0.2);
	}

	.jno-live-search__mobile-toggle-label {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.2;
	}

	.jno-live-search__mobile-toggle-icon {
		width: 24px;
		height: 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.jno-live-search__mobile-toggle-icon svg {
		width: 24px;
		height: 24px;
		stroke: currentColor;
		stroke-width: 2.2;
		fill: none;
		stroke-linecap: round;
		stroke-linejoin: round;
		display: block;
	}

	.jno-live-search__mobile-toggle-icon-close {
		display: none !important;
	}

	.jno-live-search.is-mobile-panel-open .jno-live-search__mobile-toggle-icon-search {
		display: none !important;
	}

	.jno-live-search.is-mobile-panel-open .jno-live-search__mobile-toggle-icon-close {
		display: block !important;
	}

	.jno-live-search__mobile-overlay {
		display: block;
		position: fixed;
		inset: 0;
		border: 0;
		padding: 0;
		background: rgba(15, 23, 42, 0.38);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease;
		z-index: 998;
	}

	.jno-live-search.is-mobile-panel-open .jno-live-search__mobile-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.jno-live-search__left,
	.jno-live-search__right {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.jno-live-search__right {
		order: 2;
	}

	.jno-live-search__left {
		order: 3;
		position: fixed;
		top: 16px;
		left: 16px;
		right: 16px;
		width: auto;
		max-width: none;
		max-height: calc(100dvh - 32px);
		background: #e1f3e9;
		padding: 0 16px 16px 16px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(18px);
		transition: opacity 0.24s ease, transform 0.24s ease;
		z-index: 999;
	}

	.jno-live-search.is-mobile-panel-open .jno-live-search__left {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.jno-live-search__mobile-panel-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 12px;
	}

	.jno-live-search__mobile-panel-title {
		font-size: 18px;
		font-weight: 700;
		color: #111827;
	}

	.jno-live-search__mobile-close {
		padding: 10px 14px;
		border: 0;
		border-radius: 999px;
		background: #23A455;
		color: #ffffff;
		font-size: 13px;
		font-weight: 700;
		line-height: 1;
	}

	.jno-live-search__search {
		padding: 16px 0 12px;
	}

	.jno-live-search__detail-tags {
		gap: 6px;
		margin-bottom: 16px;
	}

	.jno-live-search__detail-tag {
		padding: 6px 10px;
		font-size: 11px;
	}
}

@media (max-width: 640px) {
	.jno-dashboard-search__hero {
		padding: 28px 14px 92px;
		border-radius: 22px;
	}

	.jno-dashboard-search__welcome {
		font-size: 14px;
	}

	.jno-dashboard-search__headline {
		font-size: clamp(22px, 7vw, 28px);
	}

	.jno-dashboard-search__suggestions {
		left: 10px;
		right: 10px;
		border-radius: 16px;
	}

	.jno-dashboard-search__suggestion-title {
		font-size: 15px;
	}

	.jno-dashboard-search__suggestion-category {
		font-size: 11px;
	}

	.jno-dashboard-search__hero-shape--left {
		width: 240px;
		height: 240px;
		left: -110px;
		bottom: -100px;
	}

	.jno-dashboard-search__hero-shape--right {
		width: 240px;
		height: 240px;
		top: -100px;
		right: -110px;
	}

	.jno-dashboard-search__cards-shell {
		margin-top: -58px;
		padding: 0 8px 8px;
	}

	.jno-dashboard-search__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.jno-dashboard-search__card {
		min-height: 190px;
		padding: 24px 18px;
		border-radius: 20px;
	}
}



button.jno-live-search__mobile-toggle:hover,
button.jno-live-search__mobile-toggle:focus {
    background-color: #242424 !important;
    color: #fff;
    text-decoration: none;
}
