﻿.trending-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

    .trending-wrapper::-webkit-scrollbar {
        display: none;
    }

.project-card {
    flex: 0 0 auto;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

    .project-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    font-size: 22px;
    z-index: 10;
    cursor: pointer;
}

.left-btn {
    left: -10px;
}

.right-btn {
    right: -10px;
}

@media (max-width:768px) {

    .project-card {
        width: 100%;
    }
}
