/* 필터 */
.maker-filter-wrap {
    margin-bottom:30px;
}
.maker-filter {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
}
.maker-filter a {
    padding: 6px 10px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
    color:#444;
    background:#fff;
}
.maker-filter a:hover,
.maker-filter a.on {
    background:#f26321;
    color:#fff;
    border-color:#f26321;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.filter-title {
    margin-right: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

/* 메이커 카드 */
.maker-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(180px,1fr));
    gap:25px;
}
.maker-card {
    border:1px solid #eee;
    background:#fff;
    border-radius:10px;
    padding:20px 10px;
    text-align:center;
    transition:0.2s;
    display:block;
}
.maker-card:hover {
    border-color:#f26321;
    box-shadow:0 4px 14px rgba(0,0,0,0.1);
}
.maker-thumb {
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:12px;
}
.maker-thumb img {
    max-height:70px;
    max-width:90%;
    filter:brightness(0.95);
    object-fit:contain;
}
.maker-name {
    font-size: 1.6em;
    font-weight: 800;
    letter-spacing: -1px;
}