.makerlist-wrap {
    margin: 40px auto 80px;
}

.makerlist-wrap h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f15a22;
    color: #333;
}

.makerlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 25px;
}

.makerlist-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: all .25s;
    display: block;
}

.makerlist-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-4px);
    border-color: #f15a22;
}

.makerlist-card .img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.makerlist-card .name {
    font-size: 1.3em;
    font-weight: 800;
    color: #333;
    min-height: 30px;
}

.makerlist-card .price {
    font-size: 16px;
    font-weight: 700;
    display: none;
    color: #f15a22;
}

.makerlist-paging {
    text-align: center;
    margin-top: 40px;
}

.makerlist-paging a,
.makerlist-paging span {
    display: inline-block;
    margin: 0 3px;
    border-radius: 4px;
    font-size: 14px;
}

.makerlist-paging .current {
    background: #f15a22;
    border-color: #f15a22;
    color: #fff;
}


@media (max-width: 1024px) {
    .makerlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .makerlist-wrap {
        width: 95%;
    }
    .makerlist-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .makerlist-card .img img {
        height: 160px;
    }
}
