/* Main Container */
.zen-lpg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Grid Layout */
.zen-lpg-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 600px) {
    .zen-lpg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zen-lpg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styling */
.zen-lpg-card {
    background: #fff;
    /* Clean look, no border, just content */
    display: flex;
    flex-direction: column;
}

.zen-lpg-image-wrapper {
    display: block;
    position: relative;
    padding-bottom: 75%;
    /* 4:3 aspect ratio */
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 4px;
    /* Slight rounding on image */
}

.zen-lpg-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zen-lpg-card:hover .zen-lpg-image-wrapper img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.zen-lpg-content {
    padding: 25px;
    /* Uniform padding as requested */
}

.zen-lpg-meta {
    display: none;
    /* Hide if legacy HTML exists */
}

.zen-lpg-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #111;
}

.zen-lpg-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.zen-lpg-title a:hover {
    color: #0073aa;
    /* WordPress Blue */
}

/* Pagination */
.zen-lpg-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.zen-lpg-page-num,
.zen-lpg-page-nav {
    border: none;
    background: transparent;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: all 0.2s ease;
    border-radius: 50%;
    /* Round background on hover */
    font-family: inherit;
    min-width: 40px;
    /* Ensure visual circle */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zen-lpg-page-num:hover,
.zen-lpg-page-nav:hover {
    background-color: #833130;
    /* Custom color */
    color: #fff;
    /* White text for contrast */
}

/* Minimalist Active State */
.zen-lpg-page-num.active {
    background-color: transparent;
    color: #000;
    font-weight: 800;
    pointer-events: none;
}

/* Arrow Animation */
.zen-lpg-page-nav {
    font-size: 1.4rem;
    line-height: 1;
    padding: 6px 10px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.zen-lpg-page-nav.prev:hover {
    transform: translateX(-4px);
}

.zen-lpg-page-nav.next:hover {
    transform: translateX(4px);
}

/* Loader opacity */
.zen-lpg-grid {
    transition: opacity 0.3s ease;
}