.athena-tl {
	--atl-accent: #F2A33C;
	--atl-text: #FFFFFF;
	--atl-icon: #7FA8E8;
	--atl-bg-top: #000000;
	--atl-bg-bottom: #4F74B8;

	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 64px 16px 72px;
	background: linear-gradient( 180deg, var(--atl-bg-top) 0%, var(--atl-bg-top) 22%, var(--atl-bg-bottom) 100% );
	color: var(--atl-text);
	overflow: hidden;
	font-family: inherit;
}
.athena-tl *, .athena-tl *::before, .athena-tl *::after { box-sizing: border-box; }

.athena-tl-header { text-align: center; margin-bottom: 48px; }
.athena-tl-logo { margin: 0 auto 18px; }
.athena-tl-logo svg { width: 78px; height: auto; color: var(--atl-text); }
.athena-tl-logo .athena-tl-owl { display: inline-block; }
.athena-tl-logo img { max-width: 96px; height: auto; display: inline-block; }
.athena-tl-title {
	margin: 0;
	font-size: clamp( 30px, 4vw, 50px );
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--atl-text);
	line-height: 1.1;
}

.athena-tl-carousel {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

.athena-tl-viewport { overflow: hidden; flex: 1 1 auto; }
.athena-tl-track {
	display: flex;
	will-change: transform;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.athena-tl-card {
	flex: 0 0 auto;
	width: 33.3333%;
	padding: 0 18px;
	text-align: center;
}
.athena-tl-icon {
	--atl-icon-size: 76px;
	height: var(--atl-icon-size);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: var(--atl-icon);
	line-height: 1;
}
/* Force EVERY icon type (Elementor font icon <i>, Elementor inline SVG and its
   wrapper <span>, plain <svg>, and uploaded <img>) into one identical box so
   library icons and uploaded images match exactly. */
.athena-tl-icon > i,
.athena-tl-icon > svg,
.athena-tl-icon > img,
.athena-tl-icon > span {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: var(--atl-icon-size) !important;
	height: var(--atl-icon-size) !important;
}
.athena-tl-icon svg,
.athena-tl-icon img,
.athena-tl-icon span svg,
.athena-tl-icon span img {
	width: var(--atl-icon-size) !important;
	height: var(--atl-icon-size) !important;
	object-fit: contain;
	fill: currentColor;
}
.athena-tl-icon i {
	font-size: var(--atl-icon-size) !important;
	line-height: 1 !important;
	color: var(--atl-icon);
}
.athena-tl-icon i:before {
	font-size: inherit !important;
	line-height: 1 !important;
}

.athena-tl-date {
	color: var(--atl-accent);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp( 20px, 2.2vw, 26px );
	font-weight: 700;
	margin-bottom: 10px;
}
.athena-tl-text {
	color: var(--atl-text);
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp( 15px, 1.4vw, 18px );
	font-weight: 500;
	line-height: 1.4;
	max-width: 320px;
	margin: 0 auto;
}

.athena-tl-nav {
	flex: 0 0 auto;
	width: 44px; height: 44px;
	-webkit-appearance: none;
	appearance: none;
	background: transparent !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	outline: none !important;
	color: var(--atl-text);
	cursor: pointer;
	opacity: .85;
	transition: opacity .15s, transform .15s, background-color .15s;
	display: flex; align-items: center; justify-content: center;
	padding: 0;
	margin: 0;
	line-height: 1;
}
.athena-tl-nav:hover { opacity: 1; transform: scale(1.12); background: rgba(255,255,255,.08) !important; }
.athena-tl-nav:focus { outline: none !important; box-shadow: none !important; }
.athena-tl-nav:focus-visible { box-shadow: 0 0 0 2px rgba(255,255,255,.55) !important; }
.athena-tl-nav svg {
	width: 28px; height: 28px;
	display: block;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.athena-tl-nav[disabled] { opacity: .25; cursor: default; transform: none; background: transparent !important; }

.athena-tl-dots {
	display: flex; justify-content: center; gap: 8px;
	margin-top: 34px;
}
.athena-tl-dots button {
	width: 9px; height: 9px; padding: 0;
	border-radius: 50%; border: none; cursor: pointer;
	background: rgba(255,255,255,.35);
	transition: background .15s, transform .15s;
}
.athena-tl-dots button.is-active { background: var(--atl-accent); transform: scale(1.25); }

.athena-tl-empty { text-align: center; opacity: .7; }

/* Responsive: card widths are also enforced inline by JS for the transform math,
   these rules are the no-JS / fallback presentation. */
@media (max-width: 900px) {
	.athena-tl-card { width: 50%; }
	.athena-tl { padding: 48px 12px 56px; }
}
@media (max-width: 600px) {
	.athena-tl-card { width: 100%; }
	.athena-tl-header { margin-bottom: 32px; }
	.athena-tl-nav { width: 36px; height: 36px; }
	.athena-tl-nav svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
	.athena-tl-track { transition: none; }
}
