/* ==========================================================================
   Header Widget Styles
   ========================================================================== */
.eth-wrapper {
	font-family: 'Inter', sans-serif;
}
.eth-container,
.eth-header-inner {
	width: min(100% - 48px, 1440px);
	margin: 0 auto;
}
.eth-top-bar,
.eth-main-header {
	padding-left: 0;
	padding-right: 0;
}
.eth-top-bar .eth-container,
.eth-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.eth-top-bar {
	background: #f8fafc;
	padding: 10px 24px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #0f172a;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
}
.eth-ticker {
	display: flex;
	align-items: center;
	gap: 10px;
}
.eth-ticker-label {
	font-weight: 800;
	color: #ef4444;
}
.eth-socials {
	display: flex;
	gap: 15px;
}
.eth-socials a {
	color: #64748b;
	transition: color 0.2s;
}
.eth-socials a:hover {
	color: #0f172a;
}

.eth-main-header {
	background: #fff;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
}
.eth-logo a {
	text-decoration: none;
	color: #0f172a;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.5px;
}
.eth-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}
.eth-menu ul li a {
	text-decoration: none;
	color: #0f172a;
	font-weight: 600;
	font-size: 15px;
	transition: color 0.2s;
}
.eth-menu ul li a:hover {
	color: #3b82f6;
}
.eth-menu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 30px;
}
.eth-menu li { position: relative; }
.eth-menu li::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 0;
	right: 0;
	height: 14px;
}
.eth-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 230px;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
	z-index: 110;
}
.eth-menu .sub-menu li + li { border-top: 1px solid #f1f5f9; }
.eth-menu .sub-menu a { display: block; padding: 10px 0; white-space: normal; }
.eth-menu .sub-menu li > .sub-menu { top: 0; left: calc(100% + 16px); }
.eth-menu li:hover > .sub-menu,
.eth-menu li:focus-within > .sub-menu { display: block; }
.eth-menu li.menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.eth-menu li.menu-item-has-children > a::after {
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid currentColor;
	display: inline-block;
	vertical-align: middle;
}
.eth-submenu-toggle { display: none !important; }
.eth-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.eth-search-icon {
	cursor: pointer;
	color: #0f172a;
	display: flex;
	align-items: center;
}
.eth-subscribe-btn {
	background: #000;
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.2s;
}
.eth-subscribe-btn:hover {
	opacity: 0.8;
}
.eth-search-toggle {
	background: none;
	border: none;
	cursor: pointer;
	color: #0f172a;
	display: flex;
	align-items: center;
	padding: 0;
}
.eth-search-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 8px;
	z-index: 999;
	display: none;
}
.eth-search-dropdown.active {
	display: block;
}
.eth-search-dropdown form {
	display: flex;
	width: 280px;
}
.eth-search-dropdown input {
	border: 1px solid #cbd5e1;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	outline: none;
	width: 100%;
}
.eth-search-dropdown button {
	border: none;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 0 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
}
.eth-menu-toggle { display: none !important; padding: 0; border: 0; background: transparent; color: #0f172a; cursor: pointer; }
.eth-menu-toggle svg { display: block; }
@media (max-width: 767px) {
	.eth-container,
	.eth-header-inner { width: min(100% - 32px, 1440px); }
	.eth-top-bar { padding: 8px 16px; font-size: 12px; }
	.eth-ticker { min-width: 0; white-space: nowrap; overflow: hidden; }
	.eth-ticker > span:last-child { overflow: hidden; text-overflow: ellipsis; }
	.eth-socials, .eth-subscribe-btn { display: none; }
	.eth-main-header { padding: 0; }
	.eth-header-inner { padding: 12px 0; }
	.eth-logo .custom-logo-link img { max-height: 38px; width: auto; }
	.eth-logo a { font-size: 20px; }
	.eth-actions { gap: 16px; }
	.eth-menu-toggle { display: block !important; }
	.eth-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 12px 16px 16px; background: #fff; border-bottom: 1px solid #e2e8f0; box-shadow: 0 12px 20px rgba(15, 23, 42, 0.1); z-index: 100; }
	.eth-menu.is-open { display: block; }
	.eth-menu > ul { display: block; }
	.eth-menu > ul > li + li { border-top: 1px solid #e2e8f0; }
	.eth-menu ul li a { display: block; padding: 12px 0; }
	.eth-menu li.menu-item-has-children > a::after { display: none; }
	.eth-menu ul.sub-menu { display: none; position: static; min-width: 0; padding: 0 0 8px 16px; border: 0; box-shadow: none; border-radius: 0; }
	.eth-menu li.is-expanded > ul.sub-menu { display: block; }
	.eth-submenu-toggle { display: inline-flex !important; position: absolute; top: 6px; right: 0; align-items: center; justify-content: center; width: 36px; height: 36px; border: 0; background: transparent; color: #0f172a; cursor: pointer; }
	.eth-menu li.is-expanded > .eth-submenu-toggle svg { transform: rotate(180deg); }
}

/* ==========================================================================
   Footer Widget Styles
   ========================================================================== */
.etf-wrapper {
	font-family: 'Inter', sans-serif;
	color: #94a3b8;
	background-color: #020617;
}
.etf-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2.5fr 1fr 1fr 1fr 2.5fr;
	gap: 30px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: 40px;
}
@media (max-width: 991px) {
	.etf-container {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.etf-container {
		grid-template-columns: 1fr;
	}
}
.etf-info-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.etf-logo a {
	text-decoration: none;
	color: #fff;
	font-weight: 800;
	font-size: 24px;
}
.etf-desc {
	font-size: 14px;
	line-height: 1.6;
}
.etf-socials {
	display: flex;
	gap: 12px;
}
.etf-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1e293b;
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.2s;
}
.etf-social-link:hover {
	background: #3b82f6;
	color: #fff;
}
.etf-menu-title {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}
.etf-menu-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.etf-menu-col ul li a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
}
.etf-custom-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.etf-news-title {
	font-size: 16px;
	font-weight: 800;
}
.etf-news-desc {
	font-size: 14px;
	line-height: 1.5;
}
.etf-news-form {
	display: flex;
	width: 100%;
}
.etf-news-form input {
	flex: 1;
	border: 1px solid rgba(255,255,255,0.1);
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	padding: 12px;
	font-size: 14px;
	outline: none;
	color: #0f172a;
	background: #fff;
}
.etf-news-form button {
	border: none;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	padding: 12px 20px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: opacity 0.2s;
	background: #3b82f6;
	color: #fff;
}
.etf-news-form button:hover {
	opacity: 0.9;
}
.etf-bottom-bar {
	max-width: 1200px;
	margin: 20px auto 0;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ==========================================================================
   Archive Posts Widget Styles
   ========================================================================== */
.etbl-archive-wrapper { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.etbl-filters-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.etbl-filter-btn { height: 42px; padding: 0 24px; border-radius: 9999px; font-size: 15px; font-weight: 500; border: 1px solid #E5E7EB; background: #ffffff; color: #374151; cursor: pointer; transition: all 250ms ease; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; user-select: none; }
.etbl-filter-btn:hover { background: #F3F4F6; }
.etbl-filter-btn.active { background: #16A34A; color: #fff; border-color: #16A34A; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.etbl-result-count { text-align: center; font-size: 15px; color: #6B7280; margin-bottom: 48px; }
.etbl-archive-grid { display: grid; gap: 32px; }
.etbl-archive-card { background: #fff; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); overflow: hidden; transition: all 300ms ease; display: flex; flex-direction: column; height: 100%; opacity: 0; transform: translateY(20px); }
.etbl-archive-card.animated { opacity: 1; transform: translateY(0); }
.etbl-archive-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.etbl-card-thumb-wrap { overflow: hidden; }
.etbl-card-thumb { width: 100%; height: 240px; object-fit: cover; border-radius: 14px 14px 0 0; display: block; }
.etbl-card-body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.etbl-badges-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.etbl-badge { height: 24px; padding: 0 12px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; white-space: nowrap; }
.etbl-badge-business { background: #3B82F6; }
.etbl-badge-sports { background: #F97316; }
.etbl-badge-health { background: #16A34A; }
.etbl-badge-tech { background: #8B5CF6; }
.etbl-badge-travel { background: #EC4899; }
.etbl-badge-world { background: #6366F1; }
.etbl-card-title { font-size: 22px; font-weight: 700; color: #111827; line-height: 1.35; margin: 0 0 12px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.etbl-card-title a { color: inherit; text-decoration: none; }
.etbl-card-title a:hover { text-decoration: underline; }
.etbl-card-excerpt { font-size: 16px; color: #6B7280; line-height: 1.6; margin: 0 0 20px 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.etbl-readmore { height: 42px; padding: 0 18px; border-radius: 9999px; font-size: 15px; font-weight: 600; border: 1px solid #D1D5DB; background: transparent; color: #111827; cursor: pointer; transition: all 300ms ease; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; gap: 8px; align-self: flex-start; }
.etbl-readmore:hover { background: #111827; color: #fff; border-color: #111827; }
.etbl-readmore:hover .etbl-arrow-icon { stroke: #fff; }
.etbl-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.etbl-page-btn { width: 40px; height: 40px; border-radius: 10px; font-size: 15px; font-weight: 500; border: 1px solid #D1D5DB; background: #fff; color: #374151; cursor: pointer; transition: all 250ms ease; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.etbl-page-btn:hover { background: #F3F4F6; }
.etbl-page-btn.active { background: #16A34A; color: #fff; border-color: #16A34A; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.etbl-page-btn.etbl-page-next { width: auto; padding: 0 14px; gap: 6px; }
@keyframes etblFadeUp { to { opacity: 1; transform: translateY(0); } }
.etbl-archive-card { animation: etblFadeUp 500ms ease forwards; }
.etbl-archive-card:nth-child(1) { animation-delay: 0ms; }
.etbl-archive-card:nth-child(2) { animation-delay: 80ms; }
.etbl-archive-card:nth-child(3) { animation-delay: 160ms; }
.etbl-archive-card:nth-child(4) { animation-delay: 240ms; }
.etbl-archive-card:nth-child(5) { animation-delay: 320ms; }
.etbl-archive-card:nth-child(6) { animation-delay: 400ms; }
.etbl-archive-card:nth-child(7) { animation-delay: 480ms; }
.etbl-archive-card:nth-child(8) { animation-delay: 560ms; }
.etbl-archive-card:nth-child(9) { animation-delay: 640ms; }

/* ==========================================================================
   Search Posts Widget Styles
   ========================================================================== */
.etbl-search-wrapper { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.etbl-sfilters-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.etbl-sfilter-btn { height: 42px; padding: 0 24px; border-radius: 9999px; font-size: 15px; font-weight: 500; border: 1px solid #E5E7EB; background: #ffffff; color: #374151; cursor: pointer; transition: all 250ms ease; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; user-select: none; }
.etbl-sfilter-btn:hover { background: #F3F4F6; }
.etbl-sfilter-btn.active { background: #16A34A; color: #fff; border-color: #16A34A; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.etbl-sresult-count { text-align: center; font-size: 15px; color: #6B7280; margin-bottom: 48px; }
.etbl-search-grid { display: grid; gap: 32px; }
.etbl-scard { background: #fff; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); overflow: hidden; transition: all 300ms ease; display: flex; flex-direction: column; height: 100%; opacity: 0; transform: translateY(20px); }
.etbl-scard.animated { opacity: 1; transform: translateY(0); }
.etbl-scard:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.etbl-scard-thumb-wrap { overflow: hidden; }
.etbl-scard-thumb { width: 100%; height: 240px; object-fit: cover; border-radius: 14px 14px 0 0; display: block; }
.etbl-scard-body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.etbl-sbadges-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.etbl-sbadge { height: 24px; padding: 0 12px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; white-space: nowrap; }
.etbl-sbadge-business { background: #3B82F6; }
.etbl-sbadge-sports { background: #F97316; }
.etbl-sbadge-health { background: #16A34A; }
.etbl-sbadge-tech { background: #8B5CF6; }
.etbl-sbadge-travel { background: #EC4899; }
.etbl-sbadge-world { background: #6366F1; }
.etbl-scard-title { font-size: 22px; font-weight: 700; color: #111827; line-height: 1.35; margin: 0 0 12px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.etbl-scard-title a { color: inherit; text-decoration: none; }
.etbl-scard-title a:hover { text-decoration: underline; }
.etbl-scard-excerpt { font-size: 16px; color: #6B7280; line-height: 1.6; margin: 0 0 20px 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.etbl-sreadmore { height: 42px; padding: 0 18px; border-radius: 9999px; font-size: 15px; font-weight: 600; border: 1px solid #D1D5DB; background: transparent; color: #111827; cursor: pointer; transition: all 300ms ease; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; gap: 8px; align-self: flex-start; }
.etbl-sreadmore:hover { background: #111827; color: #fff; border-color: #111827; }
.etbl-sreadmore:hover .etbl-sarrow-icon { stroke: #fff; }
.etbl-spagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.etbl-spage-btn { width: 40px; height: 40px; border-radius: 10px; font-size: 15px; font-weight: 500; border: 1px solid #D1D5DB; background: #fff; color: #374151; cursor: pointer; transition: all 250ms ease; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.etbl-spage-btn:hover { background: #F3F4F6; }
.etbl-spage-btn.active { background: #16A34A; color: #fff; border-color: #16A34A; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.etbl-spage-btn.etbl-spage-next { width: auto; padding: 0 14px; gap: 6px; }
@keyframes etblsFadeUp { to { opacity: 1; transform: translateY(0); } }
.etbl-scard { animation: etblsFadeUp 500ms ease forwards; }
.etbl-scard:nth-child(1) { animation-delay: 0ms; }
.etbl-scard:nth-child(2) { animation-delay: 80ms; }
.etbl-scard:nth-child(3) { animation-delay: 160ms; }
.etbl-scard:nth-child(4) { animation-delay: 240ms; }
.etbl-scard:nth-child(5) { animation-delay: 320ms; }
.etbl-scard:nth-child(6) { animation-delay: 400ms; }
.etbl-scard:nth-child(7) { animation-delay: 480ms; }
.etbl-scard:nth-child(8) { animation-delay: 560ms; }
.etbl-scard:nth-child(9) { animation-delay: 640ms; }

/* ==========================================================================
   List Grid Widget Styles
   ========================================================================== */
.lw-list {
	display: flex;
	flex-direction: column;
}
.lw-item {
	padding: 16px 0;
	border-bottom: 1px solid #e5e7eb;
}
.lw-item:last-child {
	border-bottom: none;
}
.lw-category-wrap {
	margin-bottom: 6px;
}
.lw-category {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #4f46e5;
	background-color: #eef2ff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: background 0.2s, color 0.2s;
}
.lw-category:hover {
	background-color: #4f46e5;
	color: #fff;
}
.lw-post-title {
	margin: 0 0 4px 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
.lw-post-title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.2s;
}
.lw-post-title a:hover {
	color: #4f46e5;
}
.lw-date {
	font-size: 13px;
	color: #6b7280;
}

/* ==========================================================================
   Trending Categories Widget Styles
   ========================================================================== */
.cw-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cw-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #f8fafc;
	border-radius: 12px;
	padding: 16px;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid transparent;
}
.cw-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	border-color: #f1f5f9;
	background: #fff;
}
.cw-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	flex-shrink: 0;
}
.cw-item-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cw-item-title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}
.cw-item-title a {
	color: #0f172a;
	text-decoration: none;
}
.cw-item-title a:hover {
	color: #4f46e5;
}
.cw-count {
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
}

/* ==========================================================================
   Search Widget Styles
   ========================================================================== */
.ets-container {
	font-family: 'Inter', sans-serif;
	position: relative;
	display: inline-block;
	width: 100%;
}
.ets-form-wrap {
	display: flex;
	align-items: stretch;
	width: 300px; /* Default */
	max-width: 100%;
}
.ets-form-wrap input {
	border: 1px solid #cbd5e1;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	outline: none;
	width: 100%;
	transition: all 0.3s;
}
.ets-form-wrap button {
	border: none;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 0 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	transition: all 0.3s;
}
.ets-toggle-btn {
	background: #000;
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}
.ets-toggle-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 8px;
	z-index: 999;
	display: none;
}
.ets-toggle-dropdown.active {
	display: block;
}

/* ==========================================================================
   Nav Menu Widget Styles
   ========================================================================== */
.etbl-nav-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}
.etbl-nav-menu ul li a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-size: 15px;
	transition: color 0.2s;
}
.etbl-nav-menu ul li a:hover {
	color: #3b82f6;
}

/* ==========================================================================
   Post Meta Widget Styles
   ========================================================================== */
.etbl-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.etbl-post-meta .meta-separator {
	margin: 0 4px;
}

/* ==========================================================================
   Post Tags Widget Styles
   ========================================================================== */
.etbl-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.etbl-tags--list {
	flex-direction: column;
	align-items: flex-start;
}
.etbl-tags-label {
	margin-right: 8px;
	font-weight: 600;
}
.etbl-tag {
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
}
.etbl-tag:hover {
	text-decoration: none;
}
.etbl-tag-count {
	font-size: 0.85em;
	opacity: 0.7;
}

/* ==========================================================================
   Related Posts Widget Styles
   ========================================================================== */
.etbl-related-grid {
	display: grid;
}
.etbl-related-list {
	display: flex;
	flex-direction: column;
}

/* ==========================================================================
   Post Content - Code Copy Button
   ========================================================================== */
.etbl-post-content pre {
	position: relative;
	overflow: hidden;
}
.etbl-copy-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 6px;
	background: rgba(255,255,255,0.1);
	color: #9ca3af;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.etbl-post-content pre:hover .etbl-copy-btn {
	opacity: 1;
}
.etbl-copy-btn:hover {
	background: rgba(255,255,255,0.2);
	color: #e5e7eb;
}
.etbl-copy-btn--copied {
	opacity: 1 !important;
	background: rgba(34,197,94,0.2) !important;
	color: #22c55e !important;
}
