.pp-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    background: #f5f5f5;
    font-family: system-ui, sans-serif;
}

.pp-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
}

.pp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.pp-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.pp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

.pp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-badge {
    background: #eef1f5;
    color: #444;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.pp-price {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.pp-price small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.pp-amenities {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.pp-amenities li {
    font-size: 13px;
    color: #333;
    background: #f3f3f3;
    padding: 4px 8px;
    border-radius: 6px;
}
