/* ==========================================================
   Elementor Page List Widget - Frontend Styles
   ========================================================== */

/* Reset list defaults */
.epl-page-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

/* ---- Layout: Vertical ---- */
.epl-page-list.epl-vertical {
	flex-direction: column;
	width: 100%;
}

/* ---- Layout: Horizontal ---- */
.epl-page-list.epl-horizontal {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

/* ---- List Item ---- */
.epl-page-list-item {
	display: block;
	box-sizing: border-box;
}

.epl-page-list.epl-horizontal .epl-page-list-item {
	display: inline-block;
}

/* ---- Anchor / Link ---- */
.epl-page-list-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	width: 100%;
	box-sizing: border-box;
	transition: color 0.3s ease;
}

/* ---- Icon ---- */
.epl-page-list-item .epl-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.epl-page-list-item .epl-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* ---- Page Title ---- */
.epl-page-list-item .epl-page-title {
	flex: 1;
}

/* ---- No pages fallback ---- */
.epl-no-pages {
	color: #999;
	font-style: italic;
}
