/**
 * WLOOKUPS Weekly Discovery Calendar v1.0.1
 * Mobile-first discovery surface using Brand Guidelines v1.2 tokens.
 */

.wlk-weekly-calendar,
.wlk-weekly-calendar * {
	box-sizing: border-box;
}

.wlk-weekly-calendar {
	--wlk-navy: #102033;
	--wlk-ink: #161a1d;
	--wlk-blue: #3d6bff;
	--wlk-link: #3864f2;
	--wlk-lime: #c8ff3d;
	--wlk-lime-hover: #b8ef2e;
	--wlk-cloud: #f7f8f4;
	--wlk-selected: #eef3ff;
	--wlk-info: #eaf0ff;
	--wlk-success: #eaf7e0;
	--wlk-warning: #fff2d9;
	--wlk-error: #fff0ed;
	--wlk-coral: #ff6b5e;
	--wlk-muted: #626b78;
	--wlk-border: rgba(16, 32, 51, 0.13);
	position: relative;
	width: 100%;
	min-width: 0;
	padding: 28px;
	border: 1px solid var(--wlk-border);
	border-radius: 24px;
	background: var(--wlk-cloud);
	box-shadow: 0 10px 34px rgba(16, 32, 51, 0.07);
	color: var(--wlk-ink);
	font-family: "IBM Plex Sans Thai Looped", "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wlk-weekly-calendar__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.wlk-weekly-calendar__heading-wrap {
	min-width: 0;
}

.wlk-weekly-calendar__title {
	margin: 0;
	color: var(--wlk-navy);
	font: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.wlk-weekly-calendar__intro {
	margin: 6px 0 0;
	color: var(--wlk-muted);
	font-size: 16px;
	line-height: 1.55;
}

.wlk-weekly-calendar__province-control {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
}

.wlk-weekly-calendar__province-control > label {
	color: var(--wlk-navy);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.wlk-weekly-calendar__select-wrap {
	position: relative;
	min-width: 210px;
}

.wlk-weekly-calendar__province {
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 9px 42px 9px 14px;
	border: 1px solid rgba(16, 32, 51, 0.2);
	border-radius: 12px;
	appearance: none;
	background: #fff;
	color: var(--wlk-navy);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	cursor: pointer;
}

.wlk-weekly-calendar__select-wrap > svg {
	position: absolute;
	top: 50%;
	right: 13px;
	width: 19px;
	height: 19px;
	transform: translateY(-50%);
	fill: none;
	stroke: var(--wlk-navy);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

.wlk-weekly-calendar__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 22px;
}

.wlk-weekly-calendar__day {
	display: block;
	min-width: 0;
	min-height: 96px;
	margin: 0;
	padding: 11px 8px;
	border: 1px solid rgba(16, 32, 51, 0.14);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 3px 10px rgba(16, 32, 51, 0.04);
	color: var(--wlk-navy);
	font: inherit;
	text-align: center;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wlk-weekly-calendar__day time {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	gap: 2px;
}

.wlk-weekly-calendar__day-eyebrow {
	display: block;
	min-height: 1.35em;
	color: var(--wlk-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.wlk-weekly-calendar__day-date {
	display: block;
	color: var(--wlk-navy);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	white-space: nowrap;
}

.wlk-weekly-calendar__day-count {
	display: block;
	color: var(--wlk-muted);
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.35;
	white-space: nowrap;
}

.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):hover,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):active,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):focus {
	border-color: rgba(61, 107, 255, 0.42);
	background: var(--wlk-selected) !important;
	box-shadow: 0 7px 18px rgba(16, 32, 51, 0.08);
	color: var(--wlk-navy) !important;
	transform: translateY(-1px);
}

.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):hover .wlk-weekly-calendar__day-date,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):active .wlk-weekly-calendar__day-date,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):focus .wlk-weekly-calendar__day-date {
	color: var(--wlk-navy) !important;
}

.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):hover .wlk-weekly-calendar__day-eyebrow,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):hover .wlk-weekly-calendar__day-count,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):active .wlk-weekly-calendar__day-eyebrow,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):active .wlk-weekly-calendar__day-count,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):focus .wlk-weekly-calendar__day-eyebrow,
.wlk-weekly-calendar button.wlk-weekly-calendar__day:not(.is-selected):focus .wlk-weekly-calendar__day-count {
	color: var(--wlk-muted) !important;
}

.wlk-weekly-calendar__day.is-selected,
.wlk-weekly-calendar button.wlk-weekly-calendar__day.is-selected:hover,
.wlk-weekly-calendar button.wlk-weekly-calendar__day.is-selected:active,
.wlk-weekly-calendar button.wlk-weekly-calendar__day.is-selected:focus {
	border-color: var(--wlk-navy);
	background: var(--wlk-lime) !important;
	box-shadow: 0 6px 18px rgba(16, 32, 51, 0.12);
	color: var(--wlk-navy) !important;
}

.wlk-weekly-calendar button.wlk-weekly-calendar__day.is-selected .wlk-weekly-calendar__day-date {
	color: var(--wlk-navy) !important;
}

.wlk-weekly-calendar__day.is-selected .wlk-weekly-calendar__day-eyebrow,
.wlk-weekly-calendar__day.is-selected .wlk-weekly-calendar__day-count {
	color: rgba(16, 32, 51, 0.76) !important;
}

.wlk-weekly-calendar__day:focus-visible,
.wlk-weekly-calendar__province:focus-visible,
.wlk-weekly-calendar a:focus-visible,
.wlk-weekly-calendar .event_item.type1 a:focus-visible {
	outline: 3px solid var(--wlk-link);
	outline-offset: 3px;
	box-shadow: 0 0 0 2px #fff;
}

.wlk-weekly-calendar__panel {
	position: relative;
	min-height: 180px;
}

.wlk-weekly-calendar__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 28px;
	margin-bottom: 12px;
}

.wlk-weekly-calendar__context {
	margin: 0;
	color: var(--wlk-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.wlk-weekly-calendar__loading-label,
.wlk-weekly-calendar__error-label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.wlk-weekly-calendar__loading-label {
	color: var(--wlk-link);
}

.wlk-weekly-calendar__error-label {
	padding: 5px 9px;
	border-radius: 8px;
	background: var(--wlk-error);
	color: #8a2f25;
}

.wlk-weekly-calendar__results {
	position: relative;
	min-width: 0;
	transition: opacity 0.18s ease;
}

.wlk-weekly-calendar.is-loading .wlk-weekly-calendar__results {
	opacity: 0.42;
	pointer-events: none;
}

.wlk-weekly-calendar.is-loading .wlk-weekly-calendar__panel::after {
	content: "";
	position: absolute;
	z-index: 8;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	border: 3px solid rgba(16, 32, 51, 0.14);
	border-top-color: var(--wlk-link);
	border-radius: 50%;
	animation: wlk-weekly-spin 0.72s linear infinite;
}

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

.wlk-weekly-calendar__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.wlk-weekly-calendar__card,
.wlk-weekly-calendar .event_entry,
.wlk-weekly-calendar .event_item.type1 {
	width: 100%;
	height: 100%;
	min-width: 0;
}

.wlk-weekly-calendar__card,
.wlk-weekly-calendar .event_entry {
	display: flex;
	position: relative;
}

.wlk-weekly-calendar .event_entry.el_event_feature::before,
.wlk-weekly-calendar .event_entry.el_event_feature::after {
	display: none !important;
}

.wlk-weekly-calendar .event_item.type1 {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--wlk-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(16, 32, 51, 0.07);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.wlk-weekly-calendar .event_item.type1:hover {
		border-color: rgba(61, 107, 255, 0.28);
		box-shadow: 0 12px 28px rgba(16, 32, 51, 0.12);
		transform: translateY(-3px);
	}
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail {
	position: relative !important;
	flex: 0 0 auto;
	border-radius: 0;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure,
.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure a {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure a {
	border-radius: 0;
	background: #eef0ec;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure img {
	display: block;
	width: 100%;
	height: 100% !important;
	border-radius: 0;
	object-fit: cover;
	transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
	.wlk-weekly-calendar .event_item.type1:hover .thumbnail_figure img {
		transform: scale(1.025);
	}
}

.wlk-weekly-calendar .event_item.type1 .img-author {
	display: none !important;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event_meta_cat {
	display: flex;
	position: absolute;
	z-index: 4;
	top: auto;
	right: auto;
	bottom: 12px;
	left: 12px;
	align-items: center;
	width: max-content;
	max-width: calc(100% - 76px);
	margin: 0;
	padding: 0;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event_meta_cat a {
	display: block;
	overflow: hidden;
	max-width: 100%;
	margin: 0;
	padding: 6px 10px;
	border: 1px solid rgba(16, 32, 51, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95) !important;
	box-shadow: 0 2px 8px rgba(16, 32, 51, 0.09);
	color: var(--wlk-navy);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	backdrop-filter: blur(8px);
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event_meta_cat a:not(:first-child) {
	display: none;
}

.wlk-weekly-calendar .wlk-event-status-badge {
	display: inline-flex;
	position: absolute;
	z-index: 5;
	top: 12px;
	left: 12px;
	align-items: center;
	max-width: calc(100% - 24px);
	min-height: 28px;
	gap: 6px;
	padding: 5px 9px;
	overflow: hidden;
	border: 1px solid rgba(16, 32, 51, 0.08);
	border-radius: 999px;
	background: var(--wlk-info);
	box-shadow: 0 2px 9px rgba(16, 32, 51, 0.12);
	color: var(--wlk-navy);
	font-size: 11.5px;
	font-weight: 700;
	line-height: 1.25;
	pointer-events: none;
	white-space: nowrap;
}

.wlk-weekly-calendar .wlk-event-status-badge__dot {
	display: block;
	flex: 0 0 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.wlk-weekly-calendar .wlk-event-status-badge__label {
	overflow: hidden;
	text-overflow: ellipsis;
}

.wlk-weekly-calendar .wlk-event-status-badge--success,
.wlk-weekly-calendar .wlk-event-status-badge--live {
	background: var(--wlk-success);
}

.wlk-weekly-calendar .wlk-event-status-badge--warning,
.wlk-weekly-calendar .wlk-event-status-badge--review {
	background: var(--wlk-warning);
}

.wlk-weekly-calendar .wlk-event-status-badge--urgent,
.wlk-weekly-calendar .wlk-event-status-badge--danger {
	background: var(--wlk-error);
}

.wlk-weekly-calendar .wlk-event-status-badge--urgent .wlk-event-status-badge__dot,
.wlk-weekly-calendar .wlk-event-status-badge--danger .wlk-event-status-badge__dot {
	background: var(--wlk-coral);
}

.wlk-weekly-calendar .wlk-event-status-badge--unavailable,
.wlk-weekly-calendar .wlk-event-status-badge--muted {
	background: var(--wlk-cloud);
}

.wlk-weekly-calendar .event_item.type1 .event_detail {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 14px 14px 12px;
	border: 0;
	border-radius: 0;
	background: #fff;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title {
	display: block;
	min-height: 2.8em;
	margin: 0 0 9px;
	font: inherit;
	line-height: 1.4;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--wlk-navy);
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title a::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title a:hover {
	color: var(--wlk-link);
}

.wlk-weekly-calendar .event_item.type1 .event_excerpt,
.wlk-weekly-calendar .event_item.type1 .event_ratting,
.wlk-weekly-calendar .event_item.type1 .event-button {
	display: none !important;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event-location-time {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	margin: 0 0 10px;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event-time,
.wlk-weekly-calendar .event_item.type1 .event_detail .location-rating,
.wlk-weekly-calendar .event_item.type1 .event_detail .event_location {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	margin: 0;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .location-rating {
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event-time .time,
.wlk-weekly-calendar .event_item.type1 .event_detail .event_location,
.wlk-weekly-calendar .event_item.type1 .event_detail .event_location a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--wlk-muted);
	font: inherit;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	text-decoration: none;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event_location a {
	position: relative;
	z-index: 2;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 17px;
	width: 17px;
	height: 20px;
	margin-right: 3px;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event-icon i {
	color: var(--wlk-muted) !important;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .separator {
	margin-right: 3px;
}

.wlk-weekly-calendar .event_item.type1 .event_detail .meta-footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 42px;
	margin-top: auto;
	padding: 7px 48px 0 0;
	border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.wlk-weekly-calendar .event_item.type1 .event_detail .event_loop_price {
	display: inline-block;
	max-width: 100%;
	margin: 0;
	color: var(--wlk-navy);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite {
	display: grid;
	place-items: center;
	position: absolute;
	z-index: 6;
	top: auto;
	right: 10px;
	bottom: 8px;
	left: auto;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(16, 32, 51, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 4px 14px rgba(16, 32, 51, 0.22);
	color: var(--wlk-link);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite i {
	display: none !important;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite::before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12a1 1 0 0 1 1 1v17l-7-4-7 4V4a1 1 0 0 1 1-1Zm1 2v12.55l5-2.86 5 2.86V5H7Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12a1 1 0 0 1 1 1v17l-7-4-7 4V4a1 1 0 0 1 1-1Zm1 2v12.55l5-2.86 5 2.86V5H7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite:hover {
	border-color: rgba(56, 100, 242, 0.5);
	background: #fff;
	box-shadow: 0 6px 18px rgba(16, 32, 51, 0.28);
	color: var(--wlk-link);
	transform: translateY(-1px);
}

.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite.active {
	border-color: var(--wlk-lime);
	background: var(--wlk-lime);
	color: var(--wlk-navy);
}

.wlk-weekly-calendar__empty {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 150px;
	padding: 24px;
	border: 1px dashed rgba(16, 32, 51, 0.22);
	border-radius: 16px;
	background: #fff;
	color: var(--wlk-muted);
}

.wlk-weekly-calendar__empty-icon {
	display: inline-flex !important;
	position: relative;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0 !important;
	overflow: hidden;
	border-radius: 14px;
	background: var(--wlk-info);
	color: var(--wlk-link);
	line-height: 0;
}

.wlk-weekly-calendar__empty-icon svg {
	display: block !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 24px !important;
	height: 24px !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: translate(-50%, -50%);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wlk-weekly-calendar__empty strong,
.wlk-weekly-calendar__empty span {
	display: block;
}

.wlk-weekly-calendar__empty strong {
	margin-bottom: 3px;
	color: var(--wlk-navy);
	font-size: 15px;
	line-height: 1.45;
}

.wlk-weekly-calendar__empty span {
	font-size: 14px;
	line-height: 1.5;
}

.wlk-weekly-calendar__footer-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.wlk-weekly-calendar__daily-link,
.wlk-weekly-calendar__calendar-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	gap: 7px;
	padding: 9px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wlk-weekly-calendar__daily-link {
	border: 1px solid var(--wlk-lime);
	background: var(--wlk-lime);
	color: var(--wlk-navy);
}

.wlk-weekly-calendar__calendar-link {
	border: 1px solid rgba(16, 32, 51, 0.2);
	background: #fff;
	color: var(--wlk-link);
}

.wlk-weekly-calendar__daily-link svg,
.wlk-weekly-calendar__calendar-link svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wlk-weekly-calendar__daily-link:hover {
	border-color: var(--wlk-lime-hover);
	background: var(--wlk-lime-hover);
	color: var(--wlk-navy);
	transform: translateY(-1px);
}

.wlk-weekly-calendar__calendar-link:hover {
	border-color: rgba(56, 100, 242, 0.45);
	background: var(--wlk-selected);
	color: var(--wlk-navy);
	transform: translateY(-1px);
}

.wlk-weekly-calendar__limit-note {
	margin: 10px 0 0;
	color: var(--wlk-muted);
	font-size: 12px;
	line-height: 1.45;
	text-align: right;
}

.wlk-weekly-calendar__live {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

.wlk-weekly-calendar__admin-notice {
	padding: 16px 18px;
	border: 1px solid #e4b13b;
	border-radius: 12px;
	background: #fff2d9;
	color: #102033;
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.wlk-weekly-calendar {
		padding: 24px;
	}

	.wlk-weekly-calendar__title {
		font-size: 22px;
	}

	.wlk-weekly-calendar__days {
		display: flex;
		overflow-x: auto;
		padding: 3px 3px 7px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
		overscroll-behavior-inline: contain;
	}

	.wlk-weekly-calendar__days::-webkit-scrollbar {
		display: none;
	}

	.wlk-weekly-calendar__day {
		flex: 0 0 108px;
		scroll-snap-align: start;
	}

	.wlk-weekly-calendar__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wlk-weekly-calendar {
		padding: 20px 16px;
		border-radius: 20px;
	}

	.wlk-weekly-calendar__header {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 16px;
	}

	.wlk-weekly-calendar__title {
		font-size: 20px;
	}

	.wlk-weekly-calendar__intro {
		font-size: 14px;
	}

	.wlk-weekly-calendar__province-control {
		align-items: stretch;
		flex-direction: column;
		gap: 6px;
	}

	.wlk-weekly-calendar__select-wrap {
		width: 100%;
		min-width: 0;
	}

	.wlk-weekly-calendar__days {
		margin-right: -16px;
		margin-bottom: 17px;
		margin-left: -16px;
		padding-right: 16px;
		padding-left: 16px;
	}

	.wlk-weekly-calendar__day {
		flex-basis: 96px;
		min-height: 88px;
		padding: 9px 7px;
	}

	.wlk-weekly-calendar__day-date {
		font-size: 16px;
	}

	.wlk-weekly-calendar__cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.wlk-weekly-calendar__card {
		min-height: 158px;
	}

	.wlk-weekly-calendar .event_item.type1 {
		flex-direction: row;
	}

	.wlk-weekly-calendar .event_item.type1 .event_thumbnail {
		flex: 0 0 38%;
		width: 38%;
		min-width: 116px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure,
	.wlk-weekly-calendar .event_item.type1 .event_thumbnail .thumbnail_figure a {
		height: 100%;
		min-height: 158px;
		aspect-ratio: auto;
	}

	.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event_meta_cat {
		display: none;
	}

	.wlk-weekly-calendar .wlk-event-status-badge {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 16px);
		min-height: 26px;
		padding: 4px 7px;
		font-size: 10.5px;
		white-space: normal;
	}

	.wlk-weekly-calendar .wlk-event-status-badge__label {
		display: -webkit-box;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.wlk-weekly-calendar .event_item.type1 .event_thumbnail .event-loop-favourite {
		right: 8px;
		bottom: 8px;
		width: 42px;
		height: 42px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail {
		padding: 12px 12px 10px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title {
		min-height: 0;
		margin-bottom: 7px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail .loop_title a {
		font-size: 15px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail .event-location-time {
		margin-bottom: 7px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail .meta-footer {
		min-height: 34px;
		padding: 5px 0 0;
	}

	.wlk-weekly-calendar__footer-actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 15px;
	}

	.wlk-weekly-calendar__daily-link,
	.wlk-weekly-calendar__calendar-link {
		width: 100%;
		text-align: center;
	}

	.wlk-weekly-calendar__limit-note {
		text-align: left;
	}
}

@media (max-width: 420px) {
	.wlk-weekly-calendar .event_item.type1 .event_thumbnail {
		flex-basis: 36%;
		width: 36%;
		min-width: 108px;
	}

	.wlk-weekly-calendar .event_item.type1 .event_detail .event-time .time,
	.wlk-weekly-calendar .event_item.type1 .event_detail .event_location,
	.wlk-weekly-calendar .event_item.type1 .event_detail .event_location a {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wlk-weekly-calendar *,
	.wlk-weekly-calendar *::before,
	.wlk-weekly-calendar *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
