.tse-scope {
	--tse-primary: #0b3557;
	--tse-secondary: #164f7d;
	--tse-accent: #ffffff;
	--tse-heading: #0b3557;
	--tse-text: #3a4654;
	--tse-background: #f4f7fa;
	--tse-card: #ffffff;
	--tse-date-bar: #0b3557;
	--tse-button: #0b3557;
	--tse-button-hover: #164f7d;
	--tse-border: #e2e8ef;
	--tse-hot: #ff4a1a;
	--tse-card-radius: 18px;
	--tse-card-gap: 24px;
	--tse-columns: 4;
	--tse-hero-overlay: 0.55;
	box-sizing: border-box;
	color: var(--tse-text);
	font-size: 16px;
	line-height: 1.65;
	background: var(--tse-background);
}

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

.tse-scope img {
	max-width: 100%;
	height: auto;
	display: block;
}

.tse-scope a {
	color: var(--tse-heading);
	text-decoration: none;
}

.tse-scope .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.tse-scope a:focus-visible,
.tse-scope button:focus-visible,
.tse-scope input:focus-visible,
.tse-scope select:focus-visible {
	outline: 3px solid var(--tse-hot);
	outline-offset: 2px;
}

.tse-archive-container,
.tse-event-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.tse-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.7rem 1.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.75rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tse-btn-primary {
	background: var(--tse-button);
	color: var(--tse-accent);
}

.tse-btn-primary:hover,
.tse-btn-primary:focus {
	background: var(--tse-button-hover);
	color: var(--tse-accent);
}

.tse-btn-secondary {
	background: transparent;
	color: var(--tse-button);
	border-color: var(--tse-button);
}

.tse-btn-secondary:hover,
.tse-btn-secondary:focus {
	background: var(--tse-button);
	color: var(--tse-accent);
}

.tse-btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	min-width: 168px;
}

.tse-btn-ghost:hover,
.tse-btn-ghost:focus {
	background: #fff;
	color: var(--tse-primary);
	border-color: #fff;
}

.tse-archive-hero,
.tse-event-hero {
	position: relative;
	background-color: var(--tse-primary);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 4.75rem 1.5rem 4.25rem;
	overflow: hidden;
}

.tse-event-hero {
	padding: 2.5rem 1.25rem 2.35rem;
}

.tse-archive-hero {
	padding-bottom: 5.75rem;
}

.tse-archive-hero::before,
.tse-event-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 28, 48, 0.28) 0%, rgba(7, 28, 48, var(--tse-hero-overlay)) 100%);
}

.tse-archive-hero__inner,
.tse-event-hero__inner {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	margin: 0 auto;
	text-align: center;
}

.tse-event-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.tse-archive-hero__eyebrow,
.tse-event-hero__eyebrow {
	margin: 0;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 600;
	opacity: 0.88;
}

.tse-archive-hero__title,
.tse-event-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.35rem);
	line-height: 1.12;
	font-weight: 800;
}

.tse-archive-hero__desc,
.tse-event-hero__meta {
	margin: 0;
	font-size: 1.05rem;
}

.tse-event-hero__place {
	margin: 0;
	font-size: 1rem;
	letter-spacing: 0.02em;
	opacity: 0.92;
}

.tse-event-hero__logo {
	width: 108px;
	height: 108px;
	margin: 0;
	background: #fff;
	border-radius: 50%;
	padding: 6px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.tse-event-hero__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.tse-countdown {
	margin: 0;
	width: auto;
	max-width: none;
}

.tse-countdown__grid {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.tse-countdown__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.42rem;
	background: transparent;
	border: 0;
	padding: 0;
	min-height: 0;
	width: auto;
}

.tse-countdown__digits {
	display: flex;
	gap: 0.2rem;
}

.tse-flip {
	--tse-flip-h: 50px;
	--tse-flip-w: 36px;
	position: relative;
	display: block;
	width: var(--tse-flip-w);
	height: var(--tse-flip-h);
	color: var(--tse-hot);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: var(--tse-flip-h);
	font-variant-numeric: tabular-nums;
	perspective: 140px;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}

.tse-flip__static--top,
.tse-flip__static--bottom,
.tse-flip__flap--top,
.tse-flip__flap--bottom {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	overflow: hidden;
	background: #fff;
}

.tse-flip__static--top,
.tse-flip__flap--top {
	top: 0;
	border-radius: 8px 8px 0 0;
}

.tse-flip__static--bottom,
.tse-flip__flap--bottom {
	bottom: 0;
	background: #f7f8fa;
	border-radius: 0 0 8px 8px;
}

.tse-flip__static--top > span,
.tse-flip__static--bottom > span,
.tse-flip__flap--top > span,
.tse-flip__flap--bottom > span {
	display: block;
	width: 100%;
	height: var(--tse-flip-h);
	line-height: var(--tse-flip-h);
	text-align: center;
}

.tse-flip__static--bottom > span,
.tse-flip__flap--bottom > span {
	margin-top: calc(var(--tse-flip-h) / -2);
}

.tse-flip__flap--top,
.tse-flip__flap--bottom {
	backface-visibility: hidden;
	transform-style: preserve-3d;
}

.tse-flip__flap--top {
	transform-origin: bottom;
	z-index: 3;
}

.tse-flip__flap--bottom {
	transform-origin: top;
	transform: rotateX(90deg);
	z-index: 2;
}

.tse-flip.is-play .tse-flip__flap--top {
	animation: tse-flip-top 0.25s ease-in forwards;
}

.tse-flip.is-play .tse-flip__flap--bottom {
	animation: tse-flip-bottom 0.25s ease-out 0.25s forwards;
}

.tse-flip::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 5;
	height: 1px;
	background: rgba(11, 53, 87, 0.14);
	pointer-events: none;
}

@keyframes tse-flip-top {
	from {
		transform: rotateX(0deg);
	}
	to {
		transform: rotateX(-90deg);
	}
}

@keyframes tse-flip-bottom {
	from {
		transform: rotateX(90deg);
	}
	to {
		transform: rotateX(0deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tse-flip.is-play .tse-flip__flap--top,
	.tse-flip.is-play .tse-flip__flap--bottom {
		animation: none;
		transform: none;
	}
}

.tse-countdown__unit {
	display: block;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.95;
}

.tse-countdown__expired {
	margin: 0;
	padding: 0.85rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tse-event-hero__date {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tse-event-hero__status {
	display: inline-block;
	margin: 0;
	padding: 0.3rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tse-archive-main,
.tse-event-body {
	padding: 2.75rem 0 4rem;
}

.tse-related,
.tse-projects-wrap {
	padding: 3rem 0 4rem;
	background: #fff;
	border-top: 1px solid var(--tse-border);
}

.tse-archive-listing-title,
.tse-related-title,
.tse-section-title,
.tse-sidebar-title {
	margin: 0 0 1.25rem;
	color: var(--tse-heading);
	font-size: 1.55rem;
	line-height: 1.25;
	font-weight: 800;
}

.tse-archive-listing-title {
	margin-bottom: 1.5rem;
}

.tse-section-kicker {
	margin: 0 0 0.65rem;
	color: var(--tse-hot);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tse-archive-filters {
	margin: -3.75rem auto 2rem;
	position: relative;
	z-index: 2;
	padding: 1.15rem;
	background: #fff;
	border: 1px solid var(--tse-border);
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(11, 53, 87, 0.1);
}

.tse-events-archive--embed .tse-archive-filters {
	margin-top: 0;
}

.tse-search {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.tse-search--solo {
	margin-bottom: 0;
}

.tse-search input[type="search"] {
	flex: 1;
	min-height: 52px;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tse-border);
	border-radius: 12px;
	background: #f8fafc;
	color: var(--tse-text);
	font-size: 1rem;
}

.tse-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tse-filter {
	flex: 1 1 160px;
}

.tse-filter select {
	width: 100%;
	min-height: 48px;
	padding: 0.55rem 0.85rem;
	border: 1px solid var(--tse-border);
	border-radius: 12px;
	background: #fff;
	color: var(--tse-heading);
	font-weight: 600;
}

.tse-filter-upcoming {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 44px;
	padding: 0 0.4rem;
	color: var(--tse-heading);
	font-weight: 600;
}

.tse-events-grid {
	display: grid;
	grid-template-columns: repeat(var(--tse-columns), minmax(0, 1fr));
	gap: var(--tse-card-gap);
}

.tse-event-card {
	display: flex;
	flex-direction: column;
	background: var(--tse-card);
	border: 1px solid var(--tse-border);
	border-radius: 22px;
	overflow: hidden;
	min-width: 0;
	box-shadow: 0 10px 28px rgba(11, 53, 87, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tse-event-card:hover,
.tse-event-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 22px 40px rgba(11, 53, 87, 0.14);
}

.tse-event-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 1.15rem 0;
	background: #fff;
}

.tse-event-card__logo {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
}

.tse-event-card__placeholder {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tse-primary), var(--tse-secondary));
	opacity: 0.18;
}

.tse-event-card__body {
	padding: 10px 1.15rem;
	flex: 1;
	text-align: center;
}

.tse-event-card__title {
	margin: 0 0 0.4rem;
	font-size: 1.08rem;
	line-height: 1.35;
	color: var(--tse-heading);
	text-align: center;
}

.tse-event-card__title a {
	color: inherit;
	text-decoration: none;
}

.tse-event-card__title a:hover,
.tse-event-card__title a:focus {
	color: var(--tse-hot);
}

.tse-event-card__place,
.tse-event-card__status {
	margin: 0;
	font-size: 0.92rem;
	text-align: center;
	color: #6b7785;
}

.tse-event-card__dates {
	margin: 0 1.15rem;
	padding: 10px 1rem;
	background: var(--tse-date-bar);
	color: #fff;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.01em;
	text-transform: none;
	font-size: 0.82rem;
	border-radius: 12px;
}

.tse-event-card__footer {
	padding: 10px 1.15rem;
	background: #fff;
	text-align: center;
}

.tse-event-card__button {
	width: 100%;
	min-height: 44px;
	border-radius: 999px;
	border-color: var(--tse-border);
	color: var(--tse-heading);
	background: #fff;
}

.tse-event-card__button:hover,
.tse-event-card__button:focus {
	background: var(--tse-primary);
	border-color: var(--tse-primary);
	color: #fff;
}

.tse-empty {
	padding: 2.5rem 1rem;
	text-align: center;
	background: var(--tse-card);
	border: 1px dashed var(--tse-border);
	border-radius: var(--tse-card-radius);
}

.tse-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
}

.tse-pagination a,
.tse-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 0.75rem;
	border: 1px solid var(--tse-border);
	border-radius: 999px;
	background: var(--tse-card);
	color: var(--tse-heading);
	text-decoration: none;
}

.tse-pagination .current {
	background: var(--tse-button);
	border-color: var(--tse-button);
	color: var(--tse-accent);
}

.tse-event-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
	gap: 1.75rem;
	align-items: start;
}

.tse-event-content {
	background: #fff;
	border: 1px solid var(--tse-border);
	border-radius: 22px;
	padding: 2rem 2.1rem;
	box-shadow: 0 12px 32px rgba(11, 53, 87, 0.06);
}

.tse-section {
	margin-bottom: 0;
}

.tse-section-body {
	color: var(--tse-text);
}

.tse-section-body h2,
.tse-section-body h3 {
	color: var(--tse-heading);
	line-height: 1.3;
	margin: 1.4rem 0 0.7rem;
}

.tse-section-body h2:first-child,
.tse-section-body h3:first-child,
.tse-section-body p:first-child {
	margin-top: 0;
}

.tse-section-body p {
	margin: 0 0 1rem;
}

.tse-event-sidebar {
	display: grid;
	gap: 1.15rem;
}

.tse-sidebar-card {
	background: var(--tse-card);
	border: 1px solid var(--tse-border);
	border-radius: 20px;
	padding: 1.25rem 1.3rem;
	box-shadow: 0 12px 28px rgba(11, 53, 87, 0.06);
}

.tse-sidebar-map,
.tse-sidebar-video {
	padding: 0;
	overflow: hidden;
}

.tse-sidebar-map iframe,
.tse-sidebar-video iframe {
	width: 100%;
	height: 210px;
	border: 0;
	display: block;
}

.tse-sidebar-title {
	margin-bottom: 0.35rem;
	font-size: 1.2rem;
}

.tse-sidebar-contact .tse-sidebar-title {
	margin-bottom: 1rem;
}

.tse-info-list {
	margin: 0;
}

.tse-info-list > div {
	display: grid;
	gap: 0.18rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--tse-border);
}

.tse-info-list > div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.tse-info-list dt {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tse-hot);
	font-weight: 800;
}

.tse-info-list dd {
	margin: 0;
	color: var(--tse-heading);
	font-weight: 600;
}

.tse-info-list a {
	color: var(--tse-heading);
	font-weight: 600;
	text-decoration: none;
	word-break: break-word;
}

.tse-info-list a:hover,
.tse-info-list a:focus {
	color: var(--tse-hot);
	text-decoration: none;
}

.tse-projects-wrap .tse-section-title {
	text-align: center;
}

.tse-projects-block {
	background: #f4f8fc;
	padding: 2.75rem 0 0;
	text-align: center;
}

.tse-projects-heading {
	margin: 0 auto 1.75rem;
	max-width: 18.5em;
	padding: 0 0.75rem;
	color: var(--tse-heading);
	font-size: clamp(1.35rem, 3.4vw, 2.15rem);
	line-height: 1.3;
	font-weight: 800;
	text-align: center;
	text-wrap: balance;
}

.tse-projects-block + .tse-related {
	padding-top: 0.35rem;
}

.tse-scope .tse-projects-block + .tse-related {
	padding-top: 0.35rem;
}

.tse-events-archive--embed {
	padding: 1rem 0;
	background: transparent;
}

.tse-event-hero--banner {
	padding: 10px 1.5rem;
	min-height: 0;
	display: flex;
	align-items: center;
	background-position: center right;
	background-size: cover;
}

.tse-event-hero--banner::before {
	background: linear-gradient(90deg, rgba(6, 24, 48, 0.92) 0%, rgba(6, 24, 48, 0.7) 38%, rgba(6, 24, 48, 0.28) 68%, rgba(6, 24, 48, 0.1) 100%);
}

.tse-event-hero--banner .tse-event-hero__inner {
	width: min(1180px, 100%);
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
	align-items: center;
	gap: 1.5rem;
	text-align: left;
}

.tse-event-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 640px;
}

.tse-event-hero--banner .tse-event-hero__title {
	display: flex;
	flex-direction: column;
	gap: 0.02em;
	font-size: clamp(1.3rem, 2.4vw, 1.8rem);
	line-height: 1.15;
}

.tse-event-hero__title-accent {
	color: var(--tse-hot);
	font-size: 0.78em;
	font-weight: 800;
}

.tse-event-hero__tagline {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 1rem;
	opacity: 0.95;
}

.tse-event-hero__script {
	margin: 0;
	justify-self: end;
	align-self: start;
	padding-top: 2.5rem;
	max-width: 250px;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: clamp(1.3rem, 2.3vw, 1.85rem);
	line-height: 1.35;
	text-align: right;
	color: rgba(255, 255, 255, 0.92);
}

.tse-event-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.5rem;
}

.tse-event-hero__fact {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	font-size: 0.86rem;
	font-weight: 600;
}

.tse-event-hero__icon {
	display: inline-flex;
}

.tse-event-hero--banner .tse-countdown {
	margin: 0;
	max-width: none;
}

.tse-event-hero--banner .tse-countdown__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	min-height: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.tse-event-hero--banner .tse-countdown__unit {
	margin-top: 0;
	color: #fff;
	opacity: 0.95;
	font-weight: 700;
	font-size: 0.62rem;
}

.tse-btn-calendar {
	background: var(--tse-hot);
	color: #fff;
	border: 0;
	gap: 0.45rem;
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: 0.92rem;
	min-height: 48px;
	padding: 0.7rem 1.35rem;
	box-shadow: 0 8px 18px rgba(255, 74, 26, 0.28);
}

.tse-btn-calendar:hover,
.tse-btn-calendar:focus {
	background: #e03e12;
	color: #fff;
}

.tse-listing-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.tse-listing-head__copy {
	min-width: 0;
}

.tse-listing-head .tse-related-title,
.tse-listing-head .tse-archive-listing-title {
	margin: 0;
}

.tse-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.45rem;
}

.tse-section-kicker::after {
	content: "";
	width: 36px;
	height: 3px;
	background: var(--tse-hot);
	border-radius: 99px;
}

.tse-btn-all {
	background: #fff;
	color: var(--tse-heading);
	border: 1px solid var(--tse-border);
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.9rem;
	gap: 0.4rem;
	min-height: 44px;
	white-space: nowrap;
}

.tse-btn-all:hover,
.tse-btn-all:focus {
	background: var(--tse-primary);
	border-color: var(--tse-primary);
	color: #fff;
}

.tse-related {
	background: #f4f8fc;
	border-top: 0;
}

.tse-event-card__dates {
	margin: 0 1.15rem;
	border-radius: 12px;
	text-transform: none;
	letter-spacing: 0.01em;
}

.tse-event-card__footer {
	padding: 10px 1.15rem;
}

.tse-event-card__button {
	gap: 0.35rem;
}

.tse-projects-wrap {
	background: transparent;
	color: inherit;
	padding: 0 0 2.25rem;
	border-top: 0;
	text-align: initial;
}

.tse-projects-wrap .tse-section-title {
	color: var(--tse-heading);
	margin-bottom: 1.75rem;
}

.tse-projects {
	width: 100%;
	max-width: none;
	overflow: visible;
}

.tse-section-kicker--light {
	color: rgba(255, 255, 255, 0.85);
	justify-content: center;
}

.tse-projects .elementor-section.elementor-section-boxed > .elementor-container,
.tse-projects .e-con.e-con-boxed {
	max-width: 1180px;
}

.tse-scope .tse-projects img {
	display: inline-block;
	height: auto;
	border-radius: 0;
}
