.psl-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.psl-project-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.psl-project-card a {
    text-decoration: none;
    color: #000;
}

.psl-project-img {
    overflow: hidden;
    height: 220px;
}

.psl-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.psl-project-card:hover img {
    transform: scale(1.15);
}

.psl-project-info {
    padding: 15px;
}

.psl-project-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.psl-project-info p {
    font-size: 14px;
    color: #666;
}

/* Slider basic style */
.psl-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.psl-slide {
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.12);
    background: #fff;
}

.psl-slide-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s ease;
}

.psl-slide:hover img {
    transform: scale(1.15);
}

.psl-slide h3 {
    padding: 12px;
    font-size: 16px;
}

/* Responsive */
@media(max-width: 992px) {
    .psl-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .psl-project-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
