/* ===== WRAPPER GERAL ===== */

.lpr-wrapper {
    max-width: 980px;
    margin: 32px auto;
    padding: 0;
    background: transparent;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
}

/* ===== TÍTULO ===== */

.lpr-title {
    font-size: 1.15rem;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ===== LISTA ===== */

.lpr-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== ITEM ===== */

.lpr-item {
    display: grid;
    grid-template-columns: 182px 1fr;
    gap: 18px;
    padding: 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
    transition: 0.15s ease-out;
}

.lpr-item:hover {
    transform: translateY(-1px);
    border-color: #d1d5db;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

/* ===== IMAGEM ===== */

.lpr-thumb {
    width: 182px;
    height: 182px;
    min-width: 182px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}

.lpr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease-out;
}

.lpr-item:hover .lpr-thumb img {
    transform: scale(1.04);
}

/* Placeholder */

.lpr-thumb-placeholder {
    width: 182px;
    height: 182px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9ca3af;
}

/* ===== CONTEÚDO ===== */

.lpr-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Meta */

.lpr-meta {
    font-size: 0.78rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lpr-cats {
    color: #2563eb;
}

/* Título */

.lpr-post-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.lpr-post-title a {
    color: #111827;
    text-decoration: none;
    transition: 0.15s;
}

.lpr-item:hover .lpr-post-title a {
    color: #2563eb;
}

/* Excerpt */

.lpr-excerpt {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Botão */

.lpr-btn {
    margin-top: 6px;
    display: inline-block;
    padding: 8px 16px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.15s ease-out;
}

.lpr-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Paginação */

.lpr-pagination {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.lpr-page-link a,
.lpr-page-link span {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 0.85rem;
    color: #374151;
    text-decoration: none;
}

.lpr-page-link a:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1e40af;
}

.lpr-page-link .current {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* Mobile */

@media (max-width: 768px) {
    .lpr-item {
        grid-template-columns: 1fr;
    }

    .lpr-thumb,
    .lpr-thumb-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}
