/**
 * Sidebar Last Posts — Estilos do frontend.
 *
 * @package SidebarLastPosts
 */

/* Lista principal */
.slp-post-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Item individual */
.slp-post-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #e5e5e5;
}

.slp-post-item:last-child {
	border-bottom: none;
}

/* Thumbnail */
.slp-thumb {
	flex-shrink: 0;
}

.slp-thumb a {
	display: block;
	line-height: 0;
}

.slp-thumb-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

/* Conteúdo */
.slp-content {
	flex: 1;
	min-width: 0;
}

/* Título */
.slp-title {
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: inherit;
	text-decoration: none;
	line-height: 1.3;
}

.slp-title:hover,
.slp-title:focus {
	text-decoration: underline;
}

/* Resumo */
.slp-excerpt {
	margin: 4px 0 0;
	font-size: 0.9em;
	color: #555;
	line-height: 1.4;
}

/* Sem posts */
.slp-no-posts {
	color: #777;
	font-style: italic;
}