/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.pseb-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pseb-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pseb-card img {
    width: 100%;
    height: auto;
    display: block;
}

.pseb-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.pseb-user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#dyn-listings-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dyn-listing-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.dyn-listing-box:hover {
    transform: translateY(-3px);
}

.dyn-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.dyn-description {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.dyn-price,
.dyn-company,
.dyn-tech {
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

.dyn-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: cover;
    max-height: 200px;
}

#dyn-load-more {
    margin: 30px auto;
    display: block;
    padding: 10px 25px;
    font-size: 15px;
    background-color: #0943dc;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#dyn-load-more:hover {
    background-color: #0631a6;
}

 