/* OE Hiroba */

:root {
	--oeh-bg: #eef6ee;
	--oeh-bg-chat: #e5efe5;
	--oeh-panel: rgba(255, 255, 255, 0.94);
	--oeh-panel-strong: #ffffff;
	--oeh-line: #d0e0d0;
	--oeh-line-strong: #b9cfba;
	--oeh-text: #17311c;
	--oeh-text-mid: #47634b;
	--oeh-text-soft: #708d74;
	--oeh-accent: #3d9250;
	--oeh-accent-strong: #2f7b42;
	--oeh-accent-light: rgba(61, 146, 80, 0.12);
	--oeh-accent-lighter: rgba(61, 146, 80, 0.06);
	--oeh-danger: #c94040;
	--oeh-danger-light: rgba(201, 64, 64, 0.1);
	--oeh-shadow-sm: 0 4px 14px rgba(23, 49, 28, 0.05);
	--oeh-shadow-md: 0 14px 40px rgba(23, 49, 28, 0.08);
	--oeh-shadow-lg: 0 20px 50px rgba(23, 49, 28, 0.12);
	--oeh-radius-sm: 12px;
	--oeh-radius-md: 18px;
	--oeh-radius-lg: 28px;
	--oeh-transition: 0.2s ease;
	--oeh-font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	--oeh-font-latin: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body.oeh-page {
	margin: 0;
	min-height: 100dvh;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 0%, rgba(105, 170, 115, 0.18), transparent 30%),
		radial-gradient(circle at 100% 10%, rgba(93, 151, 102, 0.14), transparent 26%),
		linear-gradient(180deg, #f5faf3 0%, #edf5eb 46%, #e7f0e4 100%);
	color: var(--oeh-text);
	font-family: var(--oeh-font-jp);
	font-size: 14px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.oeh-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.oeh-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.oeh-app {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 0 env(safe-area-inset-bottom);
}

.oeh-app [hidden] {
	display: none !important;
}

.oeh-app.is-guest-gated > :not(.oeh-guest-gate) {
	filter: blur(5px);
	opacity: 0.42;
	pointer-events: none;
	user-select: none;
}

.oeh-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(185, 207, 186, 0.72);
	z-index: 5;
}

.oeh-header__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
	font-size: 20px;
	text-decoration: none;
	transition: background var(--oeh-transition), transform var(--oeh-transition);
	flex-shrink: 0;
}

.oeh-header__back:hover {
	background: rgba(61, 146, 80, 0.18);
	transform: translateX(-1px);
}

.oeh-header__title {
	flex: 1 1 auto;
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.oeh-header__title small {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 600;
	color: var(--oeh-text-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--oeh-font-latin);
}

.oeh-header__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.oeh-header__badge--admin { background: #fde8e8; color: #b42525; }
.oeh-header__badge--venue_owner { background: #fef3e2; color: #9a5c10; }
.oeh-header__badge--organizer { background: #e3edfd; color: #2755a0; }
.oeh-header__badge--participant { background: #edf4ee; color: var(--oeh-text-mid); }
.oeh-header__badge--guest { background: #efefef; color: #666; }

.oeh-header__roles {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}

.oeh-header__role-button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-header__role-button:hover {
	background: rgba(61, 146, 80, 0.12);
	transform: translateY(-1px);
}

.oeh-header__role-button .oeh-post__role-dot {
	position: static;
	top: auto;
	right: auto;
	width: 8px;
	height: 8px;
	border-width: 1.5px;
}

.oeh-header__note {
	font-size: 11px;
	font-weight: 700;
	color: var(--oeh-text-soft);
}

.oeh-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 18px 10px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(185, 207, 186, 0.72);
	z-index: 4;
}

.oeh-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.oeh-toolbar-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(185, 207, 186, 0.9);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--oeh-text-mid);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color var(--oeh-transition), background var(--oeh-transition), color var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-toolbar-btn:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
	transform: translateY(-1px);
}

.oeh-toolbar-btn.is-current {
	border-color: transparent;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
	box-shadow: var(--oeh-shadow-sm);
}

.oeh-toolbar-btn.is-active {
	border-color: rgba(61, 146, 80, 0.28);
	background: rgba(61, 146, 80, 0.12);
	color: var(--oeh-accent);
}

.oeh-toolbar-btn__icon {
	font-size: 19px;
	flex-shrink: 0;
}

.oeh-toolbar-btn__label {
	display: inline-block;
	white-space: nowrap;
}

.oeh-toolbar-btn--icon {
	justify-content: center;
	width: 44px;
	min-width: 44px;
	padding: 0;
	gap: 0;
	border-radius: 50%;
	flex-shrink: 0;
}

.oeh-toolbar-btn--icon .oeh-toolbar-btn__icon {
	font-size: 18px;
}

.oeh-toolbar-btn__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
	font-size: 10px;
	font-weight: 800;
}

.oeh-toolbar-btn.is-current .oeh-toolbar-btn__count,
.oeh-toolbar-btn.is-active .oeh-toolbar-btn__count {
	background: rgba(61, 146, 80, 0.16);
}

.oeh-toolbar-btn.is-active .oeh-toolbar-btn__count {
	display: none;
}

.oeh-intro {
	margin: 12px 18px 0;
	padding: 16px 18px;
	border: 1px solid rgba(185, 207, 186, 0.86);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.8);
	display: grid;
	gap: 12px;
}

.oeh-intro__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.oeh-intro__copy {
	min-width: 0;
}

.oeh-intro__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--oeh-text-soft);
	text-transform: uppercase;
	font-family: var(--oeh-font-latin);
}

.oeh-intro__title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--oeh-text);
}

.oeh-intro__body {
	display: grid;
	gap: 8px;
}

.oeh-intro__lead {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--oeh-text-mid);
}

.oeh-intro__toggle {
	appearance: none;
	border: 1px solid rgba(185, 207, 186, 0.92);
	border-radius: 999px;
	padding: 7px 14px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--oeh-text-mid);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color var(--oeh-transition), background var(--oeh-transition), color var(--oeh-transition);
}

.oeh-intro__toggle:hover {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent-lighter);
	color: var(--oeh-accent);
}

.oeh-guest-gate {
	position: absolute;
	inset: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(236, 245, 235, 0.24);
	backdrop-filter: blur(8px);
}

.oeh-guest-gate__card {
	width: min(100%, 440px);
	padding: 24px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(18px);
	box-shadow: var(--oeh-shadow-lg);
	display: grid;
	gap: 14px;
}

.oeh-guest-gate__eyebrow {
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--oeh-text-soft);
	font-family: var(--oeh-font-latin);
}

.oeh-guest-gate__title {
	margin: 0;
	font-size: 22px;
	line-height: 1.35;
	color: var(--oeh-text);
}

.oeh-guest-gate__lead {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--oeh-text-mid);
}

.oeh-guest-gate__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(244, 249, 243, 0.92);
	border: 1px solid rgba(185, 207, 186, 0.76);
	font-size: 13px;
	line-height: 1.7;
	color: var(--oeh-text);
	cursor: pointer;
}

.oeh-guest-gate__check input[type="checkbox"] {
	margin-top: 3px;
	accent-color: var(--oeh-accent);
}

.oeh-guest-gate__check a {
	color: var(--oeh-accent);
	font-weight: 800;
}

.oeh-guest-gate__actions {
	display: grid;
	gap: 10px;
}

.oeh-guest-gate__button,
.oeh-guest-gate__login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.oeh-guest-gate__button {
	appearance: none;
	border: 0;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
	cursor: pointer;
	transition: transform var(--oeh-transition), filter var(--oeh-transition), opacity var(--oeh-transition);
}

.oeh-guest-gate__button:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
}

.oeh-guest-gate__button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	filter: none;
	transform: none;
}

.oeh-guest-gate__login {
	border: 1px solid rgba(185, 207, 186, 0.92);
	background: rgba(255, 255, 255, 0.94);
	color: var(--oeh-text-mid);
}

.oeh-guest-gate__login:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
}

.oeh-role-legend {
	position: absolute;
	inset: 0;
	z-index: 68;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.oeh-role-legend__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(236, 245, 235, 0.42);
	backdrop-filter: blur(8px);
}

.oeh-role-legend__card {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	padding: 22px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--oeh-shadow-lg);
	display: grid;
	gap: 16px;
}

.oeh-role-legend__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.oeh-role-legend__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--oeh-text-soft);
	font-family: var(--oeh-font-latin);
}

.oeh-role-legend__title {
	margin: 0;
	font-size: 22px;
	line-height: 1.35;
	color: var(--oeh-text);
}

.oeh-role-legend__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(185, 207, 186, 0.9);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--oeh-text-mid);
	font-size: 18px;
	cursor: pointer;
	transition: border-color var(--oeh-transition), color var(--oeh-transition), background var(--oeh-transition);
}

.oeh-role-legend__close:hover {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-role-legend__list {
	display: grid;
	gap: 10px;
}

.oeh-role-legend__item {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(244, 249, 243, 0.92);
	border: 1px solid rgba(185, 207, 186, 0.78);
}

.oeh-role-legend__item.is-active {
	border-color: rgba(61, 146, 80, 0.4);
	box-shadow: 0 0 0 3px rgba(61, 146, 80, 0.12);
}

.oeh-role-legend__item-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.oeh-role-legend__item-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.oeh-role-legend__item-dot .oeh-post__role-dot {
	position: static;
	top: auto;
	right: auto;
	width: 16px;
	height: 16px;
}

.oeh-role-legend__item-copy {
	min-width: 0;
}

.oeh-role-legend__item-title {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	color: var(--oeh-text);
}

.oeh-role-legend__item-desc {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: var(--oeh-text-mid);
}

.oeh-idea-promote {
	position: absolute;
	inset: 0;
	z-index: 70;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.oeh-idea-promote__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(236, 245, 235, 0.42);
	backdrop-filter: blur(8px);
}

.oeh-idea-promote__card {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	padding: 22px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--oeh-shadow-lg);
	display: grid;
	gap: 16px;
}

.oeh-idea-promote__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.oeh-idea-promote__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--oeh-text-soft);
	font-family: var(--oeh-font-latin);
}

.oeh-idea-promote__title {
	margin: 0;
	font-size: 22px;
	line-height: 1.35;
	color: var(--oeh-text);
}

.oeh-idea-promote__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(185, 207, 186, 0.9);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--oeh-text-mid);
	font-size: 18px;
	cursor: pointer;
	transition: border-color var(--oeh-transition), color var(--oeh-transition), background var(--oeh-transition);
}

.oeh-idea-promote__close:hover {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-idea-promote__form {
	display: grid;
	gap: 14px;
}

.oeh-idea-promote__preview {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(244, 249, 243, 0.92);
	border: 1px solid rgba(185, 207, 186, 0.8);
}

.oeh-idea-promote__preview-label {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 800;
	color: var(--oeh-text-soft);
}

.oeh-idea-promote__preview-body {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--oeh-text-mid);
}

.oeh-idea-promote__row {
	display: flex;
	gap: 12px;
}

.oeh-idea-promote__field {
	display: grid;
	gap: 6px;
	flex: 1 1 0;
	font-size: 11px;
	font-weight: 800;
	color: var(--oeh-text-mid);
}

.oeh-idea-promote__field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(185, 207, 186, 0.98);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--oeh-text);
	font: inherit;
	font-size: 13px;
}

.oeh-idea-promote__field input:focus {
	outline: none;
	border-color: var(--oeh-accent);
	box-shadow: 0 0 0 3px rgba(61, 146, 80, 0.12);
}

.oeh-idea-promote__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}

.oeh-stage {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	position: relative;
}

.oeh-utility-stack {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8;
	padding: 12px 18px 0;
	pointer-events: none;
}

.oeh-utility-stack.has-active {
	display: block;
}

.oeh-utility-panel {
	display: none;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: var(--oeh-radius-lg);
	background: var(--oeh-panel);
	box-shadow: var(--oeh-shadow-md);
	overflow: hidden;
	pointer-events: auto;
}

.oeh-utility-panel.is-active {
	display: flex;
	flex-direction: column;
	max-height: min(44vh, 440px);
	animation: oeh-panel-in 0.22s ease;
}

@keyframes oeh-panel-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.oeh-utility-panel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 18px 12px;
	border-bottom: 1px solid rgba(185, 207, 186, 0.7);
}

.oeh-utility-panel__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--oeh-text-soft);
	text-transform: uppercase;
	font-family: var(--oeh-font-latin);
}

.oeh-utility-panel__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
}

.oeh-utility-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(185, 207, 186, 0.9);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	color: var(--oeh-text-mid);
	font-size: 18px;
	cursor: pointer;
	transition: border-color var(--oeh-transition), color var(--oeh-transition), background var(--oeh-transition);
}

.oeh-utility-panel__close:hover {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-utility-panel__body {
	display: grid;
	gap: 16px;
	padding: 16px 18px 18px;
	overflow: auto;
}

.oeh-talk-panel {
	flex: 1 1 auto;
	min-height: 0;
	padding: 14px 18px 16px;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	background: #fff;
}

.oeh-talk-panel::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.oeh-talk {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-bottom: 10px;
}

.oeh-theme-discovery {
	display: grid;
	gap: 12px;
	margin-bottom: 14px;
	padding: 14px 16px;
	border: 1px solid rgba(185, 207, 186, 0.88);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: var(--oeh-shadow-sm);
}

.oeh-theme-discovery__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.oeh-theme-discovery__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--oeh-text-soft);
	text-transform: uppercase;
	font-family: var(--oeh-font-latin);
}

.oeh-theme-discovery__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.2;
}

.oeh-theme-discovery__lead {
	margin: 0;
	max-width: 360px;
	font-size: 12px;
	line-height: 1.7;
	color: var(--oeh-text-soft);
}

.oeh-theme-discovery__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.oeh-theme-discovery__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(185, 207, 186, 0.92);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--oeh-text-mid);
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: border-color var(--oeh-transition), background var(--oeh-transition), color var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-theme-discovery__chip:hover {
	border-color: var(--oeh-accent);
	background: #fff;
	color: var(--oeh-accent);
	transform: translateY(-1px);
}

.oeh-theme-discovery__chip.is-current {
	border-color: transparent;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
	box-shadow: var(--oeh-shadow-sm);
}

.oeh-theme-discovery__chip-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.oeh-theme-discovery__chip-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(61, 146, 80, 0.12);
	color: inherit;
	font-size: 10px;
}

.oeh-talk-filter {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
	padding: 10px 12px;
	position: sticky;
	top: 0;
	z-index: 3;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(185, 207, 186, 0.88);
	backdrop-filter: blur(10px);
	box-shadow: var(--oeh-shadow-sm);
}

.oeh-talk-filter__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--oeh-text-soft);
	text-transform: uppercase;
}

.oeh-talk-filter__chip,
.oeh-talk-filter__step,
.oeh-talk-filter__clear {
	appearance: none;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.oeh-talk-filter__chip {
	border: 0;
	padding: 6px 12px;
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
	font-size: 12px;
}

.oeh-talk-filter__step,
.oeh-talk-filter__clear {
	border: 1px solid rgba(185, 207, 186, 0.96);
	background: rgba(255, 255, 255, 0.9);
	color: var(--oeh-text-mid);
}

.oeh-talk-filter__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
}

.oeh-talk-filter__step .oeh-icon {
	font-size: 14px;
}

.oeh-talk-filter__step:disabled {
	opacity: 0.38;
	cursor: default;
	pointer-events: none;
}

.oeh-talk-filter__step:hover:not(:disabled),
.oeh-talk-filter__clear:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
}

.oeh-talk-filter__clear {
	padding: 6px 12px;
	font-size: 12px;
}

.oeh-talk__load-more {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.oeh-load-older {
	appearance: none;
	border: 1px solid rgba(185, 207, 186, 0.96);
	border-radius: 999px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--oeh-text-mid);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color var(--oeh-transition), color var(--oeh-transition), background var(--oeh-transition);
}

.oeh-load-older:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
	background: #fff;
}

.oeh-post {
	position: relative;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 3px 0;
	border-radius: 24px;
	background: transparent;
	overflow: visible;
}

.oeh-post + .oeh-post {
	margin-top: 6px;
}

.oeh-post.is-reply {
	margin-top: 0;
	margin-left: 0;
	padding: 2px 0;
}

.oeh-post__avatar {
	position: relative;
	width: 36px;
	flex: 0 0 auto;
	align-self: flex-start;
}

.oeh-post__avatar img,
.oeh-post__avatar .avatar {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(185, 207, 186, 0.72);
	box-shadow: 0 3px 10px rgba(23, 49, 28, 0.08);
}

.oeh-post__avatar a {
	display: block;
}

.oeh-post__role-dot {
	position: absolute;
	top: -3px;
	right: -3px;
	width: 14px;
	height: 14px;
	border: 2px solid #eff6ef;
	border-radius: 50%;
	font-size: 0;
}

.oeh-post__role-dot--admin { background: #d92d20; }
.oeh-post__role-dot--venue_owner { background: #e8860c; }
.oeh-post__role-dot--organizer { background: #3b7dd8; }
.oeh-post__role-dot--participant { background: #8dae91; }
.oeh-post__role-dot--guest { background: #888; }

.oeh-post__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 8px;
	row-gap: 4px;
	width: fit-content;
	max-width: min(78%, 420px);
	flex: 0 1 auto;
	min-width: 0;
}

.oeh-post__head,
.oeh-post__bubble {
	grid-column: 1 / -1;
}

.oeh-post__head {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	padding: 0 4px;
	min-height: 24px;
}

.oeh-post__name {
	font-size: 13px;
	font-weight: 800;
	color: var(--oeh-text);
}

.oeh-post__guest-id {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(61, 146, 80, 0.1);
	color: var(--oeh-accent-strong);
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.3;
}

.oeh-post__role-label {
	display: inline-flex;
	align-items: center;
	padding: 2px 7px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.3;
}

.oeh-post__role-label--admin { background: #fde8e8; color: #b42525; }
.oeh-post__role-label--venue_owner { background: #fef3e2; color: #9a5c10; }
.oeh-post__role-label--organizer { background: #e3edfd; color: #2755a0; }
.oeh-post__role-label--participant { background: rgba(112, 141, 116, 0.12); color: var(--oeh-text-mid); }
.oeh-post__role-label--guest { background: #efefef; color: #666; }

.oeh-post__bubble {
	position: relative;
	display: grid;
	justify-self: start;
	width: fit-content;
	max-width: 100%;
	min-width: 0;
	gap: 10px;
	padding: 6px 14px 8px;
	border-radius: 4px 16px 16px 16px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(199, 216, 200, 0.88);
	box-shadow: 0 4px 12px rgba(23, 49, 28, 0.06);
}

.oeh-post__topic {
	appearance: none;
	border: 0;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(61, 146, 80, 0.12);
	color: var(--oeh-accent);
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.oeh-post__topic:hover {
	background: rgba(61, 146, 80, 0.18);
	color: var(--oeh-accent-strong);
}

.oeh-post__topic.is-active {
	background: rgba(61, 146, 80, 0.24);
}

.oeh-post__time {
	font-size: 11px;
	color: var(--oeh-text-soft);
	white-space: nowrap;
}

.oeh-post__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
	min-height: 22px;
	padding: 0 4px;
	min-width: 0;
	align-self: center;
}

.oeh-post.is-theme-match {
	transform: translateX(2px);
}

.oeh-post.is-theme-muted .oeh-post__content,
.oeh-post.is-theme-muted .oeh-post__avatar {
	position: relative;
	z-index: 1;
}

.oeh-post.is-theme-muted .oeh-post__bubble {
	box-shadow: none;
}

.oeh-post.is-theme-muted .oeh-post__avatar img,
.oeh-post.is-theme-muted .oeh-post__avatar .avatar,
.oeh-post.is-theme-muted .oeh-post__role-dot,
.oeh-post.is-theme-muted .oeh-action-btn__icon--image img,
.oeh-post.is-theme-muted .oeh-post-idea__progress-bar {
	opacity: 0.58;
}

.oeh-post.is-theme-muted .oeh-post__name,
.oeh-post.is-theme-muted .oeh-post__guest-id,
.oeh-post.is-theme-muted .oeh-post__role-label,
.oeh-post.is-theme-muted .oeh-post__reply-context-label,
.oeh-post.is-theme-muted .oeh-post__reply-context-name,
.oeh-post.is-theme-muted .oeh-post__body,
.oeh-post.is-theme-muted .oeh-post__reply-context-body,
.oeh-post.is-theme-muted .oeh-post__topic,
.oeh-post.is-theme-muted .oeh-post__time,
.oeh-post.is-theme-muted .oeh-tag,
.oeh-post.is-theme-muted .oeh-post-idea__eyebrow,
.oeh-post.is-theme-muted .oeh-post-idea__title,
.oeh-post.is-theme-muted .oeh-post-idea__status,
.oeh-post.is-theme-muted .oeh-post-idea__stats,
.oeh-post.is-theme-muted .oeh-post-idea__actions,
.oeh-post.is-theme-muted .oeh-action-btn,
.oeh-post.is-theme-muted .oeh-btn-sm {
	color: rgba(23, 49, 28, 0.58);
}

.oeh-post.is-theme-muted .oeh-btn-sm {
	border-color: rgba(23, 49, 28, 0.16);
}

.oeh-post.is-theme-muted .oeh-post__topic:hover,
.oeh-post.is-theme-muted .oeh-action-btn:hover,
.oeh-post.is-theme-muted .oeh-btn-sm:hover,
.oeh-post.is-theme-muted .oeh-btn-sm--danger:hover,
.oeh-post.is-theme-muted .oeh-action-btn--danger:hover {
	color: rgba(23, 49, 28, 0.58);
}

.oeh-post__reply-context {
	display: grid;
	gap: 2px;
	margin-bottom: 8px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(61, 146, 80, 0.08);
	border-left: 3px solid rgba(61, 146, 80, 0.4);
}

.oeh-post__reply-context-label {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--oeh-text-soft);
	text-transform: uppercase;
}

.oeh-post__reply-context-name {
	font-size: 12px;
	font-weight: 800;
	color: var(--oeh-accent-strong);
}

.oeh-post__reply-context-body {
	font-size: 12px;
	line-height: 1.55;
	color: var(--oeh-text-mid);
	word-break: break-word;
}

.oeh-post__body {
	font-size: 14px;
	line-height: 1.72;
	color: var(--oeh-text);
	word-break: break-word;
}

.oeh-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 8px;
}

.oeh-tag {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.4;
}

.oeh-tag--category { background: var(--oeh-accent-light); color: var(--oeh-accent); }
.oeh-tag--idea { background: rgba(234, 179, 8, 0.14); color: #8f6e0c; }
.oeh-tag--copy { background: rgba(59, 125, 216, 0.12); color: #2755a0; }
.oeh-tag--pending { background: rgba(234, 179, 8, 0.18); color: #7b5b08; }

.oeh-tag--button {
	appearance: none;
	border: 0;
	cursor: pointer;
	transition: transform var(--oeh-transition), filter var(--oeh-transition);
}

.oeh-tag--button:hover {
	filter: brightness(0.96);
	transform: translateY(-1px);
}

.oeh-post-idea {
	display: grid;
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(185, 207, 186, 0.82);
	border-radius: 18px;
	background: rgba(244, 249, 243, 0.88);
}

.oeh-post-idea__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.oeh-post-idea__eyebrow {
	margin: 0 0 3px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--oeh-text-soft);
	font-family: var(--oeh-font-latin);
}

.oeh-post-idea__title {
	margin: 0;
	font-size: 14px;
	line-height: 1.35;
}

.oeh-post-idea__status {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
}

.oeh-post-idea__status.is-open { background: var(--oeh-accent-light); color: var(--oeh-accent); }
.oeh-post-idea__status.is-reached { background: rgba(59, 125, 216, 0.12); color: #2755a0; }
.oeh-post-idea__status.is-expired { background: var(--oeh-danger-light); color: var(--oeh-danger); }
.oeh-post-idea__status.is-event_created { background: rgba(59, 125, 216, 0.12); color: #2755a0; }

.oeh-post-idea__progress {
	height: 6px;
	border-radius: 999px;
	background: rgba(61, 146, 80, 0.12);
	overflow: hidden;
}

.oeh-post-idea__progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #5bb16f 0%, #3d9250 100%);
}

.oeh-post-idea__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: var(--oeh-text-soft);
}

.oeh-post-idea__actions {
	display: flex;
	justify-content: flex-end;
}

.oeh-post__actions {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 6px;
	padding: 0 4px;
	justify-self: end;
	align-self: center;
}

.oeh-action-btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--oeh-text-mid);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color var(--oeh-transition), color var(--oeh-transition), background var(--oeh-transition);
}

.oeh-action-btn--icon-only {
	width: 34px;
	height: 34px;
	padding: 0;
}

.oeh-action-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
}

.oeh-action-btn__icon--image img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.oeh-action-btn--idea .oeh-action-btn__icon--image img {
	width: 20px;
	height: 20px;
}

.oeh-action-btn:hover {
	border-color: rgba(61, 146, 80, 0.24);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-action-btn--danger:hover {
	border-color: rgba(201, 64, 64, 0.24);
	background: var(--oeh-danger-light);
	color: var(--oeh-danger);
}

.oeh-post__more {
	position: relative;
}

.oeh-post__more.is-open .oeh-post__more-toggle {
	border-color: rgba(61, 146, 80, 0.28);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-post__more-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 8;
	display: grid;
	gap: 6px;
	min-width: 124px;
	padding: 8px;
	border: 1px solid rgba(185, 207, 186, 0.86);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--oeh-shadow-md);
}

.oeh-post__more.is-dropup .oeh-post__more-menu {
	top: auto;
	bottom: calc(100% + 8px);
}

.oeh-post__more-item {
	width: 100%;
	justify-content: flex-start;
	padding: 8px 10px;
	border-radius: 12px;
}

.oeh-replies {
	display: grid;
	gap: 4px;
	margin: 6px 0 0 18px;
	padding-left: 14px;
}

.oeh-post.is-owner {
	flex-direction: row-reverse;
}

.oeh-post.is-owner .oeh-post__content {
	align-items: flex-end;
}

.oeh-post.is-owner .oeh-post__head {
	display: none;
}

.oeh-post.is-owner .oeh-post__avatar {
	display: none;
}

.oeh-post.is-owner .oeh-post__bubble {
	justify-self: end;
	border-color: rgba(126, 204, 116, 0.55);
	border-radius: 16px 4px 16px 16px;
	background: linear-gradient(180deg, #f0faec 0%, #e2f4dc 100%);
	box-shadow: 0 4px 12px rgba(83, 166, 76, 0.10);
}

.oeh-post.is-owner .oeh-post__body,
.oeh-post.is-owner .oeh-post__name,
.oeh-post.is-owner .oeh-post__time {
	color: #16331b;
}

.oeh-post.is-owner .oeh-post__reply-context {
	background: rgba(255, 255, 255, 0.32);
	border-left-color: rgba(22, 51, 27, 0.22);
}

.oeh-post.is-owner .oeh-post__reply-context-name,
.oeh-post.is-owner .oeh-post__reply-context-body {
	color: rgba(22, 51, 27, 0.86);
}

.oeh-post.is-owner .oeh-post__guest-id {
	background: rgba(255, 255, 255, 0.32);
	color: #214626;
}

.oeh-post.is-owner .oeh-post__actions {
	justify-content: flex-end;
	padding: 0 4px;
}

.oeh-post.is-owner .oeh-action-btn {
	border-color: rgba(22, 51, 27, 0.12);
	background: rgba(255, 255, 255, 0.68);
	color: #214626;
}

.oeh-post.is-owner .oeh-post__more.is-open .oeh-post__more-toggle {
	border-color: rgba(22, 51, 27, 0.18);
	background: rgba(255, 255, 255, 0.84);
	color: #214626;
}

.oeh-post.is-owner .oeh-post__more-menu {
	background: rgba(255, 255, 255, 0.96);
	border-color: rgba(22, 51, 27, 0.1);
}

.oeh-post.is-owner .oeh-post__meta {
	justify-content: flex-end;
}

.oeh-post.is-owner .oeh-post-idea {
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(22, 51, 27, 0.1);
}

.oeh-empty {
	padding: 34px 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.52);
	text-align: center;
	color: var(--oeh-text-soft);
	font-size: 14px;
}

.oeh-empty--compact {
	padding: 18px 14px;
	font-size: 13px;
}

.oeh-empty__icon {
	display: block;
	margin: 0 auto 8px;
	width: 30px;
	height: 30px;
	font-size: 30px;
	opacity: 0.56;
}

.oeh-composer-wrap {
	padding: 10px 18px 16px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(18px);
	border-top: 1px solid rgba(185, 207, 186, 0.72);
	box-shadow: 0 -8px 30px rgba(23, 49, 28, 0.04);
	z-index: 4;
}

.oeh-composer {
	display: grid;
	gap: 8px;
	max-width: 100%;
}

.oeh-composer__theme {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 8px 12px;
	border-radius: 14px;
	background: rgba(61, 146, 80, 0.08);
	color: var(--oeh-text-mid);
}

.oeh-composer__theme-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--oeh-text-soft);
}

.oeh-composer__theme-chip,
.oeh-composer__theme-clear {
	appearance: none;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.oeh-composer__theme-chip {
	border: 0;
	padding: 6px 12px;
	background: var(--oeh-accent-light);
	color: var(--oeh-accent);
}

.oeh-composer__theme-clear {
	border: 1px solid rgba(185, 207, 186, 0.92);
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--oeh-text-mid);
}

.oeh-composer__theme-clear:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
}

.oeh-composer__replying {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	padding: 8px 12px;
	border-radius: 14px;
	background: var(--oeh-accent-lighter);
	color: var(--oeh-text-mid);
	font-size: 12px;
	font-weight: 700;
}

#oeh-replying-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.oeh-composer__replying-cancel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	appearance: none;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--oeh-text-soft);
	cursor: pointer;
	line-height: 1;
}

.oeh-composer__replying-cancel .oeh-icon {
	font-size: 16px;
}

.oeh-composer__row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.oeh-composer__input-wrap {
	flex: 1 1 auto;
}

.oeh-composer textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	max-height: 120px;
	padding: 12px 16px;
	border: 1px solid rgba(185, 207, 186, 0.98);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--oeh-text);
	font: inherit;
	font-size: 14px;
	line-height: 1.5;
	resize: none;
	outline: none;
	transition: border-color var(--oeh-transition), box-shadow var(--oeh-transition);
}

.oeh-composer textarea:focus {
	border-color: var(--oeh-accent);
	box-shadow: 0 0 0 3px rgba(61, 146, 80, 0.12);
}

.oeh-composer textarea::placeholder {
	color: var(--oeh-text-soft);
}

.oeh-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	cursor: pointer;
	flex-shrink: 0;
	transition: transform var(--oeh-transition), filter var(--oeh-transition);
}

.oeh-submit .oeh-icon {
	font-size: 20px;
}

.oeh-submit:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
}

.oeh-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	filter: none;
	transform: none;
}

.oeh-composer__options {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 4px;
}

.oeh-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--oeh-text-mid);
	cursor: pointer;
}

.oeh-check input[type="checkbox"] {
	accent-color: var(--oeh-accent);
}

.oeh-idea-fields {
	display: grid;
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(185, 207, 186, 0.92);
	border-radius: 18px;
	background: var(--oeh-accent-lighter);
}

.oeh-idea-fields[hidden] {
	display: none;
}

.oeh-idea-fields label {
	display: grid;
	gap: 4px;
	font-size: 11px;
	font-weight: 800;
	color: var(--oeh-text-mid);
}

.oeh-idea-fields input[type="text"],
.oeh-idea-fields input[type="number"],
.oeh-idea-fields input[type="date"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(185, 207, 186, 0.98);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--oeh-text);
	font: inherit;
	font-size: 13px;
}

.oeh-idea-fields__row {
	display: flex;
	gap: 10px;
}

.oeh-idea-fields__row > label {
	flex: 1 1 0;
}

.oeh-composer__helper {
	padding: 10px 14px;
	border-radius: 14px;
	background: var(--oeh-danger-light);
	color: var(--oeh-danger);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.oeh-composer__helper a {
	color: var(--oeh-accent);
	font-weight: 800;
}

.oeh-categories-panel,
.oeh-ideas-panel,
.oeh-admin-panel {
	display: grid;
	gap: 16px;
}

.oeh-panel-note {
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(244, 249, 243, 0.92);
	border: 1px solid rgba(185, 207, 186, 0.78);
	font-size: 12px;
	line-height: 1.75;
	color: var(--oeh-text-mid);
}

.oeh-category-posts-wrap {
	display: grid;
	gap: 12px;
}

.oeh-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
}

.oeh-category-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 14px;
	border: 1px solid rgba(185, 207, 186, 0.96);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--oeh-text);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: border-color var(--oeh-transition), background var(--oeh-transition), color var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-category-chip:hover {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent-lighter);
	transform: translateY(-1px);
}

.oeh-category-chip.is-selected {
	border-color: rgba(61, 146, 80, 0.2);
	background: var(--oeh-accent-light);
	color: var(--oeh-accent-strong);
}

.oeh-category-chip.is-system {
	border-style: dashed;
}

.oeh-category-chip__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.oeh-category-chip__count {
	margin-left: auto;
	font-size: 11px;
	color: var(--oeh-text-soft);
}

.oeh-category-posts-section {
	padding: 18px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 20px;
	background: rgba(244, 249, 243, 0.9);
}

.oeh-category-posts-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.oeh-category-posts-section__head h3 {
	margin: 0;
	font-size: 16px;
}

.oeh-stored-card {
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(185, 207, 186, 0.72);
}

.oeh-stored-card + .oeh-stored-card {
	margin-top: 10px;
}

.oeh-stored-card__body {
	font-size: 13px;
	line-height: 1.7;
	word-break: break-word;
}

.oeh-stored-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 8px;
	font-size: 11px;
	color: var(--oeh-text-soft);
}

.oeh-category-admin {
	padding-top: 16px;
	border-top: 1px solid rgba(185, 207, 186, 0.82);
}

.oeh-category-admin__title {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 800;
	color: var(--oeh-text-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oeh-category-admin__list {
	display: grid;
	gap: 8px;
}

.oeh-category-admin__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(244, 249, 243, 0.86);
}

.oeh-category-admin__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.oeh-category-admin__meta strong {
	word-break: break-word;
}

.oeh-category-admin__actions {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.oeh-color-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.oeh-category-form {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.oeh-category-form input[type="text"] {
	min-width: 180px;
	padding: 9px 12px;
	border: 1px solid rgba(185, 207, 186, 0.96);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--oeh-text);
	font: inherit;
	font-size: 13px;
}

.oeh-category-form input[type="color"] {
	width: 40px;
	height: 40px;
	padding: 3px;
	border: 1px solid rgba(185, 207, 186, 0.96);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	cursor: pointer;
}

.oeh-category-form button {
	border: 0;
	border-radius: 999px;
	padding: 9px 16px;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.oeh-idea-card {
	padding: 18px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.88);
	display: grid;
	gap: 12px;
	transition: border-color var(--oeh-transition), box-shadow var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-idea-card.is-targeted {
	border-color: rgba(61, 146, 80, 0.44);
	box-shadow: 0 0 0 4px rgba(61, 146, 80, 0.16);
	transform: translateY(-2px);
}

.oeh-idea-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.oeh-idea-card__head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
}

.oeh-idea-card__head p {
	margin: 4px 0 0;
	font-size: 12px;
	color: var(--oeh-text-soft);
}

.oeh-idea-card__status {
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.oeh-idea-card__status.is-open { background: var(--oeh-accent-light); color: var(--oeh-accent); }
.oeh-idea-card__status.is-reached { background: rgba(59, 125, 216, 0.12); color: #2755a0; }
.oeh-idea-card__status.is-expired { background: var(--oeh-danger-light); color: var(--oeh-danger); }
.oeh-idea-card__status.is-event_created { background: rgba(59, 125, 216, 0.12); color: #2755a0; }

.oeh-idea-card__body {
	font-size: 13px;
	line-height: 1.72;
	color: var(--oeh-text-mid);
	word-break: break-word;
}

.oeh-idea-card__progress {
	height: 7px;
	border-radius: 999px;
	background: rgba(61, 146, 80, 0.12);
	overflow: hidden;
}

.oeh-idea-card__progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #5bb16f 0%, #3d9250 100%);
	transition: width 0.4s ease;
}

.oeh-idea-card__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: var(--oeh-text-soft);
}

.oeh-idea-card__stats li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.oeh-idea-card__stat-icon {
	flex: 0 0 auto;
	font-size: 14px;
	color: var(--oeh-accent);
}

.oeh-idea-card__action-icon {
	flex: 0 0 auto;
	font-size: 14px;
}

.oeh-idea-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.oeh-vote-button,
.oeh-create-event,
.oeh-btn-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: border-color var(--oeh-transition), background var(--oeh-transition), color var(--oeh-transition), transform var(--oeh-transition);
}

.oeh-vote-button,
.oeh-btn-sm {
	appearance: none;
	border: 1px solid rgba(185, 207, 186, 0.96);
	padding: 7px 14px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--oeh-text-mid);
}

.oeh-vote-button:hover,
.oeh-btn-sm:hover {
	border-color: var(--oeh-accent);
	color: var(--oeh-accent);
	background: #fff;
	transform: translateY(-1px);
}

.oeh-vote-button.is-current {
	border-color: var(--oeh-accent);
	background: var(--oeh-accent);
	color: #fff;
}

.oeh-create-event {
	border: 0;
	padding: 9px 16px;
	background: linear-gradient(135deg, #4b9d5e 0%, #397f4d 100%);
	color: #fff;
}

.oeh-create-event:hover {
	transform: translateY(-1px);
	filter: brightness(0.98);
}

.oeh-admin-section {
	padding: 18px;
	border: 1px solid rgba(185, 207, 186, 0.94);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.88);
}

.oeh-admin-section h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 800;
}

.oeh-admin-section__title-icon {
	flex: 0 0 auto;
	font-size: 15px;
	color: var(--oeh-accent);
}

.oeh-admin-queue__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.oeh-admin-queue__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(244, 249, 243, 0.88);
}

.oeh-admin-queue__list p {
	margin: 4px 0 0;
	font-size: 12px;
	color: var(--oeh-text-soft);
	line-height: 1.55;
}

.oeh-btn-sm--danger {
	color: var(--oeh-danger);
	border-color: rgba(201, 64, 64, 0.24);
}

.oeh-btn-sm--danger:hover {
	background: var(--oeh-danger-light);
	color: var(--oeh-danger);
	border-color: rgba(201, 64, 64, 0.32);
}

.oeh-toast {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translateX(-50%) translateY(-120%);
	z-index: 9999;
	padding: 11px 20px;
	border-radius: 999px;
	background: var(--oeh-text);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	box-shadow: var(--oeh-shadow-lg);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.oeh-toast.is-visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.oeh-toast.is-error {
	background: var(--oeh-danger);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (hover: hover) {
	.oeh-post:hover {
		background: rgba(255, 255, 255, 0.72);
	}
}

@media (max-width: 720px) {
	.oeh-header {
		padding: 12px 14px;
	}

	.oeh-toolbar {
		padding: 10px 14px 8px;
	}

	.oeh-toolbar__actions {
		gap: 6px;
	}

	.oeh-talk-panel,
	.oeh-utility-stack,
	.oeh-intro {
		padding-left: 14px;
		padding-right: 14px;
	}

	.oeh-intro {
		margin-left: 14px;
		margin-right: 14px;
	}

	.oeh-composer-wrap {
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media (max-width: 600px) {
	.oeh-header__note {
		display: none;
	}

	.oeh-header__title {
		font-size: 17px;
	}

	.oeh-toolbar {
		gap: 8px;
	}

	.oeh-intro {
		margin-top: 10px;
		padding: 14px;
	}

	.oeh-intro__head {
		align-items: center;
	}

	.oeh-intro__title {
		font-size: 16px;
	}

	.oeh-theme-discovery {
		padding: 12px;
	}

	.oeh-theme-discovery__head {
		display: grid;
		gap: 8px;
	}

	.oeh-theme-discovery__lead {
		max-width: none;
		font-size: 11px;
	}

	.oeh-guest-gate {
		padding: 18px;
	}

	.oeh-guest-gate__card {
		padding: 20px 18px;
		border-radius: 22px;
	}

	.oeh-guest-gate__title {
		font-size: 19px;
	}

	.oeh-role-legend {
		padding: 18px;
	}

	.oeh-role-legend__card {
		padding: 18px;
		border-radius: 22px;
	}

	.oeh-role-legend__title {
		font-size: 19px;
	}

	.oeh-idea-promote {
		padding: 18px;
	}

	.oeh-idea-promote__card {
		padding: 18px;
		border-radius: 22px;
	}

	.oeh-idea-promote__title {
		font-size: 19px;
	}

	.oeh-idea-promote__row,
	.oeh-idea-promote__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.oeh-toolbar__actions {
		flex-wrap: nowrap;
	}

	.oeh-toolbar-btn {
		min-width: 44px;
		min-height: 44px;
		padding: 0 12px;
		justify-content: center;
	}

	.oeh-toolbar-btn__label {
		display: none;
	}

	.oeh-toolbar-btn__count {
		position: absolute;
		top: -3px;
		right: -2px;
		min-width: 18px;
		height: 18px;
		padding: 0 4px;
		font-size: 9px;
		background: var(--oeh-accent);
		color: #fff;
	}

	.oeh-utility-panel.is-active {
		max-height: min(48vh, 420px);
	}

	.oeh-utility-panel__head,
	.oeh-utility-panel__body {
		padding-left: 14px;
		padding-right: 14px;
	}

	.oeh-talk-panel {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.oeh-post {
		gap: 8px;
		padding: 2px 0;
	}

	.oeh-post.is-reply {
		padding: 2px 0;
	}

	.oeh-post__content {
		max-width: calc(100% - 46px);
		column-gap: 6px;
	}

	.oeh-post__head {
		align-items: flex-start;
		padding-left: 8px;
		padding-right: 4px;
	}

	.oeh-post__meta {
		width: auto;
		min-width: 0;
		justify-content: space-between;
	}

	.oeh-post__bubble {
		padding: 11px 12px 10px;
	}

	.oeh-post.is-owner .oeh-post__head {
		display: none;
	}

	.oeh-post.is-owner .oeh-post__meta {
		justify-content: flex-end;
	}

	.oeh-replies {
		margin-left: 18px;
		padding-left: 12px;
	}

	.oeh-post__actions {
		gap: 5px;
		padding-left: 4px;
		padding-right: 4px;
	}

	.oeh-post.is-owner .oeh-post__actions {
		padding-left: 4px;
		padding-right: 4px;
	}

	.oeh-action-btn--icon-only {
		width: 32px;
		height: 32px;
	}

	.oeh-action-btn__icon {
		font-size: 16px;
	}

	.oeh-action-btn--idea .oeh-action-btn__icon--image img {
		width: 18px;
		height: 18px;
	}

	.oeh-action-btn,
	.oeh-store-select,
	.oeh-btn-sm,
	.oeh-vote-button {
		font-size: 11px;
	}

	.oeh-idea-fields__row,
	.oeh-idea-card__stats,
	.oeh-post-idea__stats,
	.oeh-admin-queue__list li,
	.oeh-stored-card__meta,
	.oeh-category-posts-section__head {
		display: grid;
		grid-template-columns: 1fr;
	}

	.oeh-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oeh-category-form {
		display: grid;
		grid-template-columns: 1fr auto auto;
	}

	.oeh-composer__row {
		gap: 6px;
	}

	.oeh-submit {
		width: 44px;
		height: 44px;
	}
}
