/* ============================================================
   CEA Theme – Widget Lista de Links Úteis (Elementor)
   Estilos conforme design Figma "Links úteis"
   ============================================================ */

.cea-links {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	font-family: 'Inter', sans-serif;
}

/* ── Toolbar (contagem + pesquisa) ────────────────────────── */

.cea-links__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.cea-links__count {
	flex: 1 1 auto;
	font-size: 18px;
	line-height: 28px;
	color: #595959;
}

.cea-links__search-box {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 460px;
	max-width: 100%;
	min-width: 296px;
	height: 56px;
	padding: 0 16px;
	background: #fff;
	border: 1px solid #d4d4d8;
	border-radius: 8px;
	color: #71717a;
}

.cea-links__search-box svg { flex-shrink: 0; }

.cea-links__search-box input {
	flex: 1;
	border: none;
	outline: none;
	background: none;
	font-family: inherit;
	font-size: 16px;
	color: #18181b;
}

.cea-links__search-box input::placeholder { color: #71717a; }

/* ── Lista ─────────────────────────────────────────────────── */

.cea-links__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.cea-links__card {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px;
	background: #fff;
	box-shadow: 0 0 .5px rgba(24,24,27,.3), 0 4px 4px rgba(24,24,27,.1);
}

.cea-links__card-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cea-links__card-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #254666;
	text-decoration: underline;
	text-underline-offset: 2px;
}

a.cea-links__card-title:hover { color: #066eaf; }

.cea-links__card-desc {
	font-size: 16px;
	line-height: 24px;
	color: #595959;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.cea-links__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #066eaf;
	text-decoration: none;
	white-space: nowrap;
}

.cea-links__btn:hover { background: #F5F8FB; }
.cea-links__btn svg { flex-shrink: 0; }

.cea-links__empty {
	font-size: 16px;
	color: #595959;
}

/* ── Paginação ─────────────────────────────────────────────── */

.cea-links__pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.cea-links__nav,
.cea-links__page {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	border: 2px solid transparent;
	color: #71717a;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}

.cea-links__nav:hover,
.cea-links__page:hover { background: #fafafa; }

.cea-links__nav.is-disabled {
	opacity: .4;
	pointer-events: none;
}

.cea-links__numbers {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cea-links__page.is-current {
	border-color: #71717a;
}

.cea-links__ellipsis {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #71717a;
}

/* ── Responsivo ────────────────────────────────────────────── */

@media (max-width: 700px) {
	.cea-links__card { flex-direction: column; align-items: flex-start; }
	.cea-links__search-box { width: 100%; }
}
