/* Grid Layout */
.psp-grid {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

/* Card */
.psp-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}
.psp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* Image */
.psp-image {
    position: relative;
    padding-bottom: 62%;
    background: #f5f5f5;
}
.psp-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.psp-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Content */
.psp-content {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.psp-title {
    margin: 0 0 8px 0;
    font-size: 19px;
    font-weight: 600;
}
.psp-title a {
    color: #1e1e1e;
    text-decoration: none;
}
.psp-title a:hover {
    color: #007cba;
}
.psp-client {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}
.psp-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.psp-excerpt p {
    margin: 0;
}
.psp-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.psp-tech span {
    padding: 3px 14px;
    background: #f0f0f1;
    border-radius: 14px;
    font-size: 11px;
    color: #555;
    font-weight: 500;
}
.psp-review {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    font-style: italic;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.psp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
    gap: 8px;
}
.psp-link {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}
.psp-link:hover {
    text-decoration: underline;
}
.psp-empty {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}
.psp-empty p {
    font-size: 18px;
    color: #666;
}
.psp-empty a {
    color: #007cba;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .psp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .psp-grid {
        grid-template-columns: 1fr !important;
    }
}