.pll-list {
	display: grid;
    /* Gaps are now handled by Elementor controls */
    grid-template-columns: 1fr;
}
.pll-item {
	display: flex;
    flex-direction: column;
	align-items: flex-start;
    overflow: hidden; /* For border radius */
    transition: all 0.3s ease;
}
.pll-item.pll-img-pos-left {
    flex-direction: row;
}
.pll-item.pll-img-pos-right {
    flex-direction: row-reverse;
}
.pll-image {
    width: 100%;
}
.pll-image img {
	width: 100%;
	height: auto;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}
.pll-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pll-title {
	margin: 0;
	font-size: 1.2rem;
}
.pll-title a {
	text-decoration: none;
}
.pll-meta {
    font-size: 0.8em;
    color: #666;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.pll-meta span:not(:last-child) {
    position: relative;
    padding-right: 10px;
}
.pll-meta span:not(:last-child):after {
    content: "•";
    position: absolute;
    right: 0;
    color: inherit;
}
.pll-excerpt {
	font-size: 0.9rem;
	line-height: 1.4;
    margin: 0;
}
.pll-read-more {
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}
.pll-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pll-pagination .page-numbers {
    padding: 5px 10px;
    background: #f0f0f0;
    text-decoration: none;
    border-radius: 3px;
}
.pll-pagination .page-numbers.current {
    background: #333;
    color: #fff;
}
