/**
 * Te Hiku Events Calendar — front-end styles.
 *
 * Scoped under .thce-app / .thce- prefixes so the plugin sits inside any theme
 * without leaking styles.
 */

.thce-app,
.thce-single,
.thce-form {
	--thce-dark: #14401f;
	--thce-accent: #3f7d41;
	--thce-ink: #1c2419;
	--thce-muted: #6b7566;
	--thce-line: #e3e6dd;
	--thce-bg: #faf9f4;
	--thce-card: #ffffff;
	--thce-radius: 12px;
	--thce-radius-sm: 8px;
	--thce-shadow: 0 1px 2px rgba(20, 40, 20, .06), 0 8px 24px rgba(20, 40, 20, .05);

	box-sizing: border-box;
	color: var(--thce-ink);
	font-size: 15px;
	line-height: 1.5;
}

.thce-app *,
.thce-app *::before,
.thce-app *::after,
.thce-form *,
.thce-single * {
	box-sizing: border-box;
}

/* ------------------------------------------------------------------ layout */

.thce-app {
	position: relative;
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr) 280px;
	gap: 24px;
	align-items: start;
	background: var(--thce-bg);
	padding: 24px;
	border-radius: var(--thce-radius);
}

.thce-app--no-sidebar {
	grid-template-columns: minmax(0, 1fr) 280px;
}

.thce-app--no-rail {
	grid-template-columns: 250px minmax(0, 1fr);
}

.thce-app--no-sidebar.thce-app--no-rail {
	grid-template-columns: minmax(0, 1fr);
}

.thce-main {
	min-width: 0;
}

/* ----------------------------------------------------------------- sidebar */

.thce-sidebar__inner {
	background: var(--thce-card);
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius);
	padding: 18px;
	box-shadow: var(--thce-shadow);
}

.thce-sidebar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.thce-sidebar__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-sidebar__close {
	display: none;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: var(--thce-muted);
}

.thce-search {
	position: relative;
	margin-bottom: 20px;
}

.thce-search__input {
	width: 100%;
	padding: 9px 34px 9px 12px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	background: #fff;
	color: inherit;
}

.thce-search__input:focus {
	outline: 2px solid var(--thce-accent);
	outline-offset: 1px;
	border-color: var(--thce-accent);
}

.thce-search__icon {
	position: absolute;
	right: 10px;
	top: 50%;
	width: 17px;
	height: 17px;
	transform: translateY(-50%);
	color: var(--thce-muted);
	pointer-events: none;
}

.thce-facet {
	margin-bottom: 20px;
}

.thce-facet__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
}

.thce-facet__title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.thce-checklist__item + .thce-checklist__item {
	margin-top: 2px;
}

.thce-checklist__item--rule {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--thce-line);
}

.thce-checklist label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 2px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 6px;
}

.thce-checklist label:hover {
	background: rgba(63, 125, 65, .06);
}

.thce-checklist__label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-checklist input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.thce-check {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	border: 1.5px solid var(--thce-line);
	border-radius: 4px;
	background: #fff;
	position: relative;
}

.thce-checklist input:checked + .thce-check {
	background: var(--thce-accent);
	border-color: var(--thce-accent);
}

.thce-checklist input:checked + .thce-check::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.thce-checklist input:focus-visible + .thce-check {
	outline: 2px solid var(--thce-accent);
	outline-offset: 2px;
}

.thce-dot {
	flex: 0 0 auto;
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--thce-cat, var(--thce-accent));
}

.thce-dot--hollow {
	background: transparent;
	border: 1.5px solid var(--thce-muted);
}

.thce-daterange {
	display: flex;
	align-items: center;
	gap: 6px;
}

.thce-daterange input {
	flex: 1 1 0;
	min-width: 0;
	padding: 7px 8px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	font-size: 13px;
	background: #fff;
	color: inherit;
}

.thce-select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	background: #fff;
	color: inherit;
}

.thce-filter-summary {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--thce-line);
	font-size: 13px;
	color: var(--thce-muted);
	display: grid;
	gap: 2px;
}

.thce-link {
	border: 0;
	background: none;
	padding: 0;
	font-size: 13px;
	color: var(--thce-accent);
	text-decoration: underline;
	cursor: pointer;
}

.thce-link--center {
	display: block;
	margin: 12px auto 0;
}

/* -------------------------------------------------------------- main head */

.thce-title {
	margin: 0;
	font-size: 34px;
	line-height: 1.15;
	font-weight: 800;
	color: var(--thce-dark);
	letter-spacing: -.01em;
}

.thce-subtitle {
	margin: 4px 0 0;
	color: var(--thce-muted);
	font-size: 15px;
}

.thce-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin: 18px 0 14px;
}

.thce-views {
	display: inline-flex;
	gap: 4px;
	background: #eef0e8;
	padding: 4px;
	border-radius: 999px;
}

.thce-views__btn {
	border: 0;
	background: none;
	padding: 7px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--thce-muted);
	cursor: pointer;
}

.thce-views__btn.is-active {
	background: var(--thce-dark);
	color: #fff;
}

.thce-nav {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.thce-nav__label {
	min-width: 168px;
	text-align: center;
	font-size: 19px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-nav__arrow {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--thce-line);
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	color: var(--thce-ink);
}

.thce-nav__arrow svg {
	width: 16px;
	height: 16px;
}

.thce-nav__arrow:hover {
	border-color: var(--thce-accent);
	color: var(--thce-accent);
}

.thce-nav__jump {
	order: 3;
	padding: 6px 14px;
	border: 1px solid var(--thce-line);
	background: #fff;
	border-radius: var(--thce-radius-sm);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	color: var(--thce-ink);
}

/* ------------------------------------------------------------- viewport */

.thce-viewport {
	background: var(--thce-card);
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius);
	overflow: hidden;
	box-shadow: var(--thce-shadow);
	transition: opacity .15s ease;
}

.thce-viewport.is-loading {
	opacity: .55;
}

.thce-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 60px 20px;
	color: var(--thce-muted);
	font-size: 14px;
}

.thce-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid var(--thce-line);
	border-top-color: var(--thce-accent);
	border-radius: 50%;
	animation: thce-spin .8s linear infinite;
}

@keyframes thce-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.thce-spinner { animation-duration: 3s; }
}

.thce-empty {
	padding: 56px 24px;
	text-align: center;
	color: var(--thce-muted);
}

.thce-empty__title {
	margin: 0 0 4px;
	font-weight: 600;
	color: var(--thce-ink);
}

.thce-empty__hint {
	margin: 0 0 16px;
	font-size: 14px;
}

/* ---------------------------------------------------------------- month */

.thce-month__head {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	background: #f4f5ef;
	border-bottom: 1px solid var(--thce-line);
}

.thce-month__dow {
	padding: 9px 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--thce-muted);
	text-align: center;
}

.thce-month__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	grid-auto-rows: minmax(96px, auto);
}

.thce-month__cell {
	border-right: 1px solid var(--thce-line);
	border-bottom: 1px solid var(--thce-line);
	padding: 6px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.thce-month__cell:nth-child(7n) {
	border-right: 0;
}

.thce-month__cell.is-outside {
	background: #fbfbf8;
	color: #b6bcb0;
}

.thce-month__cell.is-today .thce-month__num {
	background: var(--thce-dark);
	color: #fff;
}

.thce-month__num {
	align-self: flex-start;
	border: 0;
	background: none;
	font-size: 13px;
	font-weight: 600;
	color: inherit;
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 999px;
	min-width: 24px;
}

.thce-month__num:hover {
	background: rgba(63, 125, 65, .12);
}

.thce-month__summary {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 2px;
}

.thce-month__count {
	font-size: 12px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-month__dots {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

.thce-month__items {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.thce-month__item {
	display: flex;
	align-items: center;
	gap: 5px;
	border: 0;
	background: none;
	padding: 1px 2px;
	text-align: left;
	font-size: 11.5px;
	line-height: 1.25;
	color: var(--thce-cat, var(--thce-ink));
	cursor: pointer;
	border-radius: 4px;
	min-width: 0;
}

.thce-month__item:hover {
	background: rgba(63, 125, 65, .1);
	background: color-mix(in srgb, var(--thce-cat, #3f7d41) 12%, transparent);
}

.thce-month__item-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}

.thce-month__more {
	font-size: 11px;
	color: var(--thce-muted);
	padding-left: 2px;
}

/* ----------------------------------------------------------------- week */

.thce-week {
	--thce-week-hours: 12;
	font-size: 12px;
}

.thce-week__head {
	display: grid;
	grid-template-columns: 54px repeat(7, minmax(0, 1fr));
	border-bottom: 1px solid var(--thce-line);
	background: #f4f5ef;
	position: sticky;
	top: 0;
	z-index: 2;
}

.thce-week__dayhead {
	padding: 8px 6px;
	text-align: center;
	border-left: 1px solid var(--thce-line);
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.thce-week__dayhead.is-today {
	background: rgba(63, 125, 65, .1);
}

.thce-week__dow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .05em;
	color: var(--thce-muted);
}

.thce-week__date {
	font-size: 13px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-week__body {
	display: grid;
	grid-template-columns: 54px repeat(7, minmax(0, 1fr));
	height: calc(var(--thce-week-hours) * 58px);
}

.thce-week__gutter {
	display: grid;
	grid-template-rows: repeat(var(--thce-week-hours), 1fr);
}

.thce-week__hour {
	font-size: 10.5px;
	color: var(--thce-muted);
	padding: 2px 6px 0 0;
	text-align: right;
	border-top: 1px solid var(--thce-line);
}

.thce-week__col {
	position: relative;
	border-left: 1px solid var(--thce-line);
	display: grid;
	grid-template-rows: repeat(var(--thce-week-hours), 1fr);
}

.thce-week__col.is-today {
	background: rgba(63, 125, 65, .045);
}

.thce-week__line {
	border-top: 1px solid var(--thce-line);
}

.thce-week__event {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 1px;
	overflow: hidden;
	padding: 4px 5px;
	border: 0;
	border-left: 3px solid var(--thce-cat, var(--thce-accent));
	border-radius: 5px;
	/* Fallback first for browsers without color-mix(). */
	background: #f4f5ef;
	background: color-mix(in srgb, var(--thce-cat, #3f7d41) 14%, #fff);
	text-align: left;
	cursor: pointer;
	font-size: 11px;
	line-height: 1.25;
	color: var(--thce-ink);
	min-height: 22px;
}

.thce-week__event:hover {
	background: #e9ece0;
	background: color-mix(in srgb, var(--thce-cat, #3f7d41) 24%, #fff);
	z-index: 3;
}

.thce-week__time {
	font-weight: 600;
	color: var(--thce-muted);
	font-size: 10px;
}

.thce-week__name {
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
}

.thce-week__venue {
	color: var(--thce-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---- week block density tiers ----------------------------------------
   Blocks step down as they get physically smaller. The tier is applied by
   JavaScript after measuring, and anything below full detail reveals the
   rest in a hover tooltip. */

.thce-week__icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--thce-cat, var(--thce-accent));
}

.thce-week__icon svg {
	width: 15px;
	height: 15px;
	max-width: 70%;
	max-height: 70%;
	fill: currentColor;
}

/* Narrow or short: title only, wrapped to two lines. */
.thce-week__event.is-compact {
	padding: 3px 4px;
}

.thce-week__event.is-compact .thce-week__time,
.thce-week__event.is-compact .thce-week__venue,
.thce-week__event.is-compact .thce-badge {
	display: none;
}

.thce-week__event.is-compact .thce-week__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: normal;
	font-size: 10.5px;
	line-height: 1.2;
}

/* Too small for words: a solid colour block carrying the category glyph. */
.thce-week__event.is-icon {
	padding: 1px;
	align-items: center;
	justify-content: center;
	border-left-width: 2px;
	background: #eef0e8;
	background: color-mix(in srgb, var(--thce-cat, #3f7d41) 26%, #fff);
}

.thce-week__event.is-icon:hover,
.thce-week__event.is-icon:focus-visible {
	background: color-mix(in srgb, var(--thce-cat, #3f7d41) 42%, #fff);
}

.thce-week__event.is-icon .thce-week__time,
.thce-week__event.is-icon .thce-week__name,
.thce-week__event.is-icon .thce-week__venue,
.thce-week__event.is-icon .thce-badge {
	display: none;
}

.thce-week__event.is-icon .thce-week__icon {
	display: flex;
}

/* Narrow but tall: pin the icon to the top and run the title down the block,
   which is far more use than an icon floating in empty space. */
.thce-week__event.is-icon.is-tall {
	justify-content: flex-start;
	padding: 5px 1px 4px;
}

.thce-week__event.is-icon.is-tall .thce-week__icon {
	height: auto;
	flex: 0 0 auto;
	margin-bottom: 4px;
}

.thce-week__event.is-icon.is-tall .thce-week__name {
	display: block;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	max-height: calc(100% - 24px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--thce-ink);
}

/* ---- hover tooltip ---------------------------------------------------- */

.thce-tip {
	position: fixed;
	z-index: 10002;
	max-width: 260px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid var(--thce-line, #e3e6dd);
	border-left: 3px solid var(--thce-cat, #3f7d41);
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(20, 40, 20, .16);
	font-size: 12.5px;
	line-height: 1.35;
	color: #1c2419;
	pointer-events: none;
}

.thce-tip[hidden] {
	display: none;
}

.thce-tip__title {
	font-size: 13.5px;
	font-weight: 700;
	color: #14401f;
}

.thce-tip__row {
	color: #6b7566;
}

/* ----------------------------------------------------------------- list */

.thce-list__group {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	border-bottom: 1px solid var(--thce-line);
}

.thce-list__group:last-child {
	border-bottom: 0;
}

.thce-list__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 14px 8px;
	background: #f7f8f3;
	border-right: 1px solid var(--thce-line);
	position: sticky;
	top: 0;
	align-self: start;
}

.thce-list__dow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .05em;
	color: var(--thce-muted);
}

.thce-list__day {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.05;
	color: var(--thce-dark);
}

.thce-list__month {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--thce-muted);
}

.thce-list__rows {
	min-width: 0;
}

.thce-list__row {
	display: grid;
	grid-template-columns: 118px 132px minmax(0, 1fr) 150px 72px;
	gap: 12px;
	align-items: center;
	width: 100%;
	padding: 11px 14px;
	border: 0;
	border-bottom: 1px solid var(--thce-line);
	background: none;
	text-align: left;
	cursor: pointer;
	font-size: 13px;
	color: inherit;
}

.thce-list__rows > .thce-list__row:last-child {
	border-bottom: 0;
}

.thce-list__row:hover {
	background: rgba(63, 125, 65, .05);
}

.thce-list__time {
	font-weight: 600;
	color: var(--thce-muted);
	white-space: nowrap;
}

.thce-list__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.thce-list__title {
	font-weight: 700;
	color: var(--thce-ink);
}

.thce-list__excerpt {
	color: var(--thce-muted);
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-list__where {
	color: var(--thce-muted);
	font-size: 12.5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-list__meta {
	text-align: right;
}

/* ---------------------------------------------------------- pills, badges */

.thce-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--thce-cat, var(--thce-accent));
	white-space: nowrap;
}

.thce-badge {
	display: inline-block;
	padding: 2px 7px;
	border-radius: 4px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .03em;
	background: #eef0e8;
	color: var(--thce-muted);
}

.thce-badge--free {
	background: #e3f2e0;
	color: #2c6b2f;
}

.thce-badge--featured {
	background: #fdf3d6;
	color: #8a6a10;
}

.thce-tag {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	background: #eef0e8;
	color: var(--thce-muted);
	font-size: 11.5px;
	margin: 0 4px 4px 0;
}

.thce-chip {
	display: inline-block;
	padding: 5px 11px;
	margin: 0 5px 5px 0;
	border: 1px solid var(--thce-line);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	cursor: pointer;
	color: inherit;
}

.thce-chip:hover {
	border-color: var(--thce-accent);
	color: var(--thce-accent);
}

/* ---------------------------------------------------------------- legend */

.thce-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding: 12px 4px 0;
	font-size: 12px;
	color: var(--thce-muted);
}

.thce-legend__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* --------------------------------------------------------------- weekend */

.thce-weekend {
	margin-top: 22px;
}

.thce-weekend__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 10px;
}

.thce-weekend__title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-weekend__title span {
	font-weight: 500;
	color: var(--thce-muted);
	font-size: 13px;
}

.thce-weekend__scroller {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(190px, 1fr);
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x proximity;
}

.thce-ecard {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius);
	background: #fff;
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	text-align: left;
	scroll-snap-align: start;
	color: inherit;
	box-shadow: var(--thce-shadow);
}

.thce-ecard:hover {
	border-color: var(--thce-accent);
}

.thce-ecard__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: #eef0e8;
	overflow: hidden;
}

.thce-ecard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thce-ecard__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 10px 12px 12px;
}

.thce-ecard__date {
	font-size: 11px;
	font-weight: 700;
	color: var(--thce-muted);
	letter-spacing: .04em;
}

.thce-ecard__date strong {
	font-size: 15px;
	color: var(--thce-dark);
}

.thce-ecard__title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.25;
	color: var(--thce-ink);
}

.thce-ecard__meta {
	font-size: 12px;
	color: var(--thce-muted);
}

/* ------------------------------------------------------------------ rail */

.thce-rail {
	display: grid;
	gap: 16px;
}

.thce-card {
	background: var(--thce-card);
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius);
	padding: 16px;
	box-shadow: var(--thce-shadow);
}

.thce-card__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 12px;
}

.thce-card__title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-card__text {
	margin: 0 0 12px;
	font-size: 13px;
	color: var(--thce-muted);
}

.thce-hcard {
	display: grid;
	grid-template-columns: 56px 30px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	width: 100%;
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid var(--thce-line);
	background: none;
	text-align: left;
	cursor: pointer;
	color: inherit;
}

.thce-hcard:last-child {
	border-bottom: 0;
}

.thce-hcard__media {
	display: block;
	width: 56px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	background: #eef0e8;
}

.thce-hcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thce-hcard__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 9.5px;
	font-weight: 700;
	color: var(--thce-muted);
	letter-spacing: .04em;
}

.thce-hcard__date strong {
	font-size: 16px;
	color: var(--thce-dark);
	line-height: 1;
}

.thce-hcard__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.thce-hcard__title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--thce-ink);
}

.thce-hcard__meta {
	font-size: 11.5px;
	color: var(--thce-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-hcard .thce-badge {
	align-self: flex-start;
	margin-top: 2px;
}

.thce-plan {
	background: var(--thce-dark);
	color: #fff;
	border-color: var(--thce-dark);
	text-align: left;
}

.thce-plan__icon svg {
	width: 34px;
	height: 34px;
	color: rgba(255, 255, 255, .85);
}

.thce-plan__title {
	margin: 8px 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.thce-plan__blurb {
	margin: 0 0 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, .8);
	line-height: 1.4;
}

/* --------------------------------------------------------------- buttons */

.thce-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	line-height: 1.2;
}

.thce-btn--primary {
	background: var(--thce-dark);
	color: #fff;
}

.thce-btn--primary:hover {
	background: #1c5429;
	color: #fff;
}

.thce-btn--ghost {
	background: #fff;
	border-color: var(--thce-line);
	color: var(--thce-ink);
}

.thce-btn--ghost:hover {
	border-color: var(--thce-accent);
	color: var(--thce-accent);
}

.thce-btn--light {
	background: #fff;
	color: var(--thce-dark);
}

.thce-btn--block {
	display: flex;
	width: 100%;
}

.thce-btn--sm {
	padding: 7px 13px;
	font-size: 13px;
}

.thce-btn[disabled] {
	opacity: .6;
	cursor: not-allowed;
}

/* ----------------------------------------------------------------- panel */

.thce-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 100%);
	background: #fff;
	border-left: 1px solid var(--thce-line);
	box-shadow: -12px 0 40px rgba(20, 40, 20, .12);
	padding: 22px 22px 40px;
	overflow-y: auto;
	z-index: 10000;
}

.thce-panel__close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: var(--thce-muted);
	cursor: pointer;
}

.thce-panel__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
	padding-right: 30px;
}

.thce-panel__title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--thce-dark);
}

.thce-panel__title:focus {
	outline: none;
}

.thce-panel__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px;
	gap: 14px;
	align-items: start;
}

.thce-facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
	font-size: 13.5px;
}

.thce-facts li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 7px;
	align-items: start;
}

.thce-facts__icon {
	font-size: 13px;
	line-height: 1.4;
}

.thce-facts a {
	color: var(--thce-accent);
}

.thce-panel__media {
	position: relative;
	border-radius: var(--thce-radius-sm);
	overflow: hidden;
	background: #eef0e8;
}

.thce-panel__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.thce-panel__dots {
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.thce-panel__dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .6);
	cursor: pointer;
}

.thce-panel__dot.is-active {
	background: #fff;
}

.thce-costbox {
	display: grid;
	gap: 2px;
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: var(--thce-radius-sm);
	background: #f4f5ef;
	font-size: 13px;
}

.thce-costbox strong {
	color: var(--thce-dark);
}

.thce-costbox span {
	color: var(--thce-muted);
}

.thce-panel__section {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--thce-line);
}

.thce-panel__h3 {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-panel__content {
	font-size: 14px;
	line-height: 1.6;
}

.thce-panel__content p {
	margin: 0 0 10px;
}

.thce-panel__note {
	margin: 10px 0 0;
	font-size: 13px;
	color: var(--thce-muted);
}

.thce-tags {
	margin-top: 10px;
}

.thce-organiser {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin-bottom: 12px;
}

.thce-organiser__logo {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	background: #eef0e8;
	display: block;
}

.thce-organiser__body {
	display: grid;
	gap: 3px;
	font-size: 13px;
	min-width: 0;
}

.thce-organiser__body a {
	color: var(--thce-accent);
	word-break: break-word;
}

.thce-share {
	display: flex;
	gap: 8px;
}

.thce-share__btn {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--thce-line);
	border-radius: 50%;
	background: #fff;
	color: var(--thce-ink);
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}

.thce-share__btn:hover {
	border-color: var(--thce-accent);
	color: var(--thce-accent);
}

.thce-panel__actions {
	display: grid;
	gap: 8px;
	margin-top: 22px;
}

.thce-addcal {
	position: relative;
}

.thce-addcal__menu {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	background: #fff;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	box-shadow: var(--thce-shadow);
	overflow: hidden;
	z-index: 5;
}

.thce-addcal__menu a {
	display: block;
	padding: 9px 14px;
	font-size: 13.5px;
	color: var(--thce-ink);
	text-decoration: none;
}

.thce-addcal__menu a:hover {
	background: #f4f5ef;
	color: var(--thce-dark);
}

.thce-otherdates {
	display: flex;
	flex-wrap: wrap;
}

.thce-scrim {
	position: fixed;
	inset: 0;
	background: rgba(16, 26, 16, .38);
	z-index: 9999;
}

/* ------------------------------------------------------------------- map */

.thce-map {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 268px;
	min-height: 520px;
}

.thce-map__stage {
	position: relative;
	min-height: 520px;
}

.thce-map__canvas {
	position: absolute;
	inset: 0;
	background: #e8eef1;
}

.thce-map__controls {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: rgba(255, 255, 255, .96);
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	padding: 10px 12px;
	box-shadow: var(--thce-shadow);
	max-width: 210px;
	font-size: 12px;
}

.thce-map__toggle {
	display: flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	font-weight: 600;
	color: var(--thce-dark);
}

.thce-map__toggle--switch {
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--thce-line);
}

.thce-map__toggle--switch input {
	position: absolute;
	opacity: 0;
}

.thce-switch {
	width: 32px;
	height: 18px;
	border-radius: 999px;
	background: #ccd2c6;
	position: relative;
	transition: background .15s ease;
	flex: 0 0 auto;
}

.thce-switch::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	transition: transform .15s ease;
}

.thce-map__toggle--switch input:checked ~ .thce-switch {
	background: var(--thce-accent);
}

.thce-map__toggle--switch input:checked ~ .thce-switch::after {
	transform: translateX(14px);
}

.thce-map__legend {
	display: grid;
	gap: 5px;
	margin-top: 10px;
	max-height: 190px;
	overflow-y: auto;
}

.thce-map__side {
	border-left: 1px solid var(--thce-line);
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #fcfcf9;
}

.thce-map__sidehead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--thce-line);
}

.thce-map__sidehead h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-map__count {
	font-size: 12px;
	color: var(--thce-muted);
	white-space: nowrap;
}

.thce-map__list {
	overflow-y: auto;
	max-height: 520px;
	padding: 8px;
	display: grid;
	gap: 8px;
	align-content: start;
}

.thce-map__empty {
	padding: 20px 12px;
	color: var(--thce-muted);
	font-size: 13px;
	text-align: center;
}

.thce-mcard {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 10px;
	padding: 8px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	background: #fff;
	text-align: left;
	cursor: pointer;
	color: inherit;
}

.thce-mcard:hover {
	border-color: var(--thce-accent);
}

.thce-mcard__media {
	display: block;
	width: 62px;
	height: 56px;
	border-radius: 6px;
	overflow: hidden;
	background: #eef0e8;
}

.thce-mcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.thce-mcard__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.thce-mcard__title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.thce-mcard__meta {
	font-size: 11.5px;
	color: var(--thce-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-mcard .thce-badge {
	align-self: flex-start;
	margin-top: 2px;
}

/* Map marker elements (advanced markers render these as marker content). */
.thce-pin {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--thce-cat, #3f7d41);
	border: 3px solid #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
	cursor: pointer;
}

.thce-cluster {
	min-width: 36px;
	height: 36px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--thce-cat, #3f7d41);
	border: 3px solid #fff;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
	cursor: pointer;
}

/* --------------------------------------------------------- filter toggle */

.thce-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	color: var(--thce-ink);
}

.thce-filter-toggle svg {
	width: 18px;
	height: 18px;
}

.thce-filter-toggle__count {
	background: var(--thce-accent);
	color: #fff;
	border-radius: 999px;
	padding: 1px 7px;
	font-size: 11px;
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1200px) {
	.thce-app {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.thce-rail {
		grid-column: 1 / -1;
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.thce-list__row {
		grid-template-columns: 106px 118px minmax(0, 1fr) 120px;
	}

	.thce-list__meta {
		display: none;
	}
}

@media (max-width: 900px) {
	.thce-app {
		grid-template-columns: minmax(0, 1fr);
		padding: 16px;
		gap: 16px;
	}

	.thce-filter-toggle {
		display: inline-flex;
	}

	.thce-sidebar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(320px, 88vw);
		z-index: 10001;
		transform: translateX(-102%);
		transition: transform .2s ease;
		overflow-y: auto;
		padding: 12px;
		background: var(--thce-bg);
	}

	.thce-filters-open .thce-sidebar {
		transform: translateX(0);
	}

	.thce-sidebar__close {
		display: block;
	}

	.thce-title {
		font-size: 26px;
	}

	.thce-toolbar {
		gap: 10px;
	}

	.thce-nav__label {
		min-width: 130px;
		font-size: 16px;
	}

	.thce-month__grid {
		grid-auto-rows: minmax(74px, auto);
	}

	.thce-month__item-title,
	.thce-month__count {
		font-size: 10.5px;
	}

	.thce-week__body,
	.thce-week__head {
		grid-template-columns: 42px repeat(7, minmax(72px, 1fr));
	}

	.thce-week {
		overflow-x: auto;
	}

	.thce-list__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
		padding: 12px 14px;
	}

	.thce-list__where,
	.thce-list__excerpt {
		white-space: normal;
	}

	.thce-map {
		grid-template-columns: minmax(0, 1fr);
	}

	.thce-map__side {
		border-left: 0;
		border-top: 1px solid var(--thce-line);
	}

	.thce-map__list {
		max-height: 320px;
	}

	.thce-panel {
		width: 100%;
		top: auto;
		height: 88vh;
		border-radius: 16px 16px 0 0;
		border-left: 0;
	}
}

@media (min-width: 901px) {
	.thce-scrim {
		display: none;
	}

	.thce-panel {
		position: sticky;
		top: 20px;
		height: calc(100vh - 40px);
		grid-column: 3;
		grid-row: 1 / span 3;
		border-radius: var(--thce-radius);
		box-shadow: var(--thce-shadow);
		z-index: 5;
	}

	.thce-panel-open .thce-rail {
		display: none;
	}

	.thce-app--no-rail .thce-panel,
	.thce-app--no-sidebar .thce-panel {
		position: fixed;
		top: 0;
		height: 100vh;
		border-radius: 0;
	}
}

/* ------------------------------------------------------- accessibility */

.thce-app .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.thce-app :focus-visible {
	outline: 2px solid var(--thce-accent);
	outline-offset: 2px;
}

/* ------------------------------------------------------------------ form */

.thce-form {
	max-width: 780px;
	margin: 0 auto;
	background: var(--thce-card);
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius);
	padding: 26px;
	box-shadow: var(--thce-shadow);
}

.thce-form__title {
	margin: 0 0 6px;
	font-size: 28px;
	font-weight: 800;
	color: var(--thce-dark);
}

.thce-form__subtitle {
	margin: 0 0 4px;
	color: var(--thce-muted);
}

.thce-form__intro {
	font-size: 14px;
	color: var(--thce-muted);
}

.thce-form__message {
	margin: 16px 0;
	padding: 12px 14px;
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	font-weight: 600;
}

.thce-form__message.is-error {
	background: #fdeaea;
	color: #8c2020;
}

.thce-form__message.is-success {
	background: #e3f2e0;
	color: #26602a;
}

.thce-fieldset {
	border: 0;
	border-top: 1px solid var(--thce-line);
	margin: 22px 0 0;
	padding: 18px 0 0;
}

.thce-fieldset legend {
	padding: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-field {
	margin-top: 14px;
}

.thce-field label,
.thce-field__label {
	display: block;
	margin-bottom: 5px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--thce-ink);
}

.thce-field input[type="text"],
.thce-field input[type="url"],
.thce-field input[type="email"],
.thce-field input[type="tel"],
.thce-field input[type="date"],
.thce-field input[type="time"],
.thce-field input[type="number"],
.thce-field input[type="file"],
.thce-field select,
.thce-field textarea {
	width: 100%;
	padding: 9px 11px;
	border: 1px solid var(--thce-line);
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	color: inherit;
}

.thce-field textarea {
	resize: vertical;
}

.thce-field input:focus,
.thce-field select:focus,
.thce-field textarea:focus {
	outline: 2px solid var(--thce-accent);
	outline-offset: 1px;
	border-color: var(--thce-accent);
}

.thce-field--check label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 500;
	font-size: 14px;
}

.thce-field--check input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.thce-field--error input,
.thce-field--error select,
.thce-field--error textarea {
	border-color: #c0392b;
	background: #fffafa;
}

.thce-error {
	margin: 5px 0 0;
	font-size: 12.5px;
	color: #c0392b;
}

.thce-req {
	color: #c0392b;
}

.thce-hint {
	margin: 6px 0 0;
	font-size: 12.5px;
	color: var(--thce-muted);
}

.thce-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 0 14px;
}

.thce-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.thce-chipbox {
	display: inline-flex;
	margin: 0 !important;
}

.thce-chipbox input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.thce-chipbox span {
	display: inline-block;
	padding: 6px 13px;
	border: 1px solid var(--thce-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	background: #fff;
	line-height: 1.3;
}

.thce-chipbox input:checked + span {
	background: var(--thce-cat, var(--thce-accent));
	border-color: var(--thce-cat, var(--thce-accent));
	color: #fff;
}

.thce-chipbox input:focus-visible + span {
	outline: 2px solid var(--thce-accent);
	outline-offset: 2px;
}

.thce-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.thce-form__actions {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--thce-line);
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.thce-form__actions .thce-hint {
	margin: 0;
}

/* --------------------------------------------------------- single event */

.thce-single {
	max-width: 1080px;
	margin: 0 auto;
	padding: 28px 20px 48px;
}

.thce-single__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.thce-single__title {
	margin: 0 0 8px;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	color: var(--thce-dark);
}

.thce-single__when {
	margin: 0;
	color: var(--thce-muted);
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 15px;
}

.thce-single__when strong {
	color: var(--thce-ink);
}

.thce-single__media {
	margin: 22px 0;
	border-radius: var(--thce-radius);
	overflow: hidden;
}

.thce-single__media img {
	width: 100%;
	height: auto;
	display: block;
}

.thce-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	align-items: start;
	margin-top: 22px;
}

.thce-single__aside {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 24px;
}

.thce-single__section {
	margin-top: 28px;
}

.thce-single__section h2 {
	font-size: 18px;
	color: var(--thce-dark);
	margin: 0 0 10px;
}

.thce-single__note {
	margin-top: 18px;
	padding: 12px 14px;
	background: #f4f5ef;
	border-radius: var(--thce-radius-sm);
	font-size: 14px;
	color: var(--thce-muted);
}

.thce-single__cal {
	margin: 8px 0 0;
	font-size: 12.5px;
	color: var(--thce-muted);
	text-align: center;
}

.thce-single .thce-card + .thce-btn {
	margin-top: 0;
}

@media (max-width: 860px) {
	.thce-single__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.thce-single__aside {
		position: static;
	}

	.thce-single__title {
		font-size: 27px;
	}
}

/* ---------------------------------------------------------- simple list */

.thce-simplelist__title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	color: var(--thce-dark);
}

.thce-simplelist__items {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.thce-simplelist__item {
	border-bottom: 1px solid var(--thce-line);
}

.thce-simplelist__item:last-child {
	border-bottom: 0;
}

.thce-simplelist__item a {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	text-decoration: none;
	color: inherit;
}

.thce-simplelist__item a:hover .thce-simplelist__name {
	color: var(--thce-accent);
}

.thce-simplelist__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 3px solid var(--thce-cat, var(--thce-accent));
	padding-left: 8px;
}

.thce-simplelist__month {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .05em;
	color: var(--thce-muted);
	text-transform: uppercase;
}

.thce-simplelist__date strong {
	font-size: 18px;
	line-height: 1.1;
	color: var(--thce-dark);
}

.thce-simplelist__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.thce-simplelist__name {
	font-weight: 700;
	font-size: 14px;
}

.thce-simplelist__meta {
	font-size: 12.5px;
	color: var(--thce-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thce-simplelist__empty {
	color: var(--thce-muted);
	font-size: 14px;
}

.thce-highlights--standalone {
	max-width: 420px;
}
