/* Álbum de imágenes pp_imgalbum: mitad imagen, mitad info; alternado */

.pp-imgalbum {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.pp-imgalbum-empty {
    padding: 60px 20px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

.pp-imgalbum-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 280px;
    border-bottom: 1px solid #e0e0e0;
}

.pp-imgalbum-row:last-of-type {
    border-bottom: none;
}

.pp-imgalbum-half {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.pp-imgalbum-row-reverse .pp-imgalbum-half:first-child {
    order: 2;
}

.pp-imgalbum-row-reverse .pp-imgalbum-half:last-child {
    order: 1;
}

.pp-imgalbum-image {
    overflow: hidden;
    background: #f5f5f5;
}

.pp-imgalbum-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.pp-imgalbum-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    background: #fff;
}

.pp-imgalbum-info-inner {
    text-align: center;
    max-width: 400px;
}

.pp-imgalbum-title {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.pp-imgalbum-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.pp-imgalbum-cliente {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* Paginación */
.pp-imgalbum-pagination {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.pp-imgalbum-pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pp-imgalbum-page-link {
    display: inline-block;
    padding: 8px 14px;
    min-width: 44px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s;
}

.pp-imgalbum-page-link:hover {
    background: #f5f5f5;
    border-color: #2271b1;
    color: #2271b1;
}

.pp-imgalbum-page-current {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.pp-imgalbum-prev,
.pp-imgalbum-next {
    min-width: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 768px) {
    .pp-imgalbum-half {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pp-imgalbum-row-reverse .pp-imgalbum-half:first-child,
    .pp-imgalbum-row-reverse .pp-imgalbum-half:last-child {
        order: unset;
    }
    
    .pp-imgalbum-image {
        min-height: 220px;
    }
    
    .pp-imgalbum-image img {
        min-height: 220px;
    }
    
    .pp-imgalbum-info {
        padding: 24px 20px;
    }
    
    .pp-imgalbum-title {
        font-size: 18px;
    }
}
