.spaciaz-project-type-filter {
margin-bottom: 30px;
}
.spaciaz-project-type-filter .filter-title {
text-align: center;
margin-bottom: 18px;
}
.project-type-chips {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
}
.project-chip {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 22px;
border-radius: 999px;
text-decoration: none;
border: 1px solid rgba(0, 0, 0, 0.08);
background: #f4f4f4;
color: inherit;
font-weight: 600;
line-height: 1;
transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.project-chip:hover {
transform: translateY(-1px);
}
.project-chip.is-active {
background: #caa64d;
border-color: transparent;
color: #111;
}
.project-chip:focus-visible {
outline: 2px solid rgba(202, 166, 77, 0.45);
outline-offset: 3px;
}
.project-chip .chip-icon i {
font-size: 16px;
width: 18px;
text-align: center;
display: inline-block;
} @media (max-width: 640px) {
.project-type-chips {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
justify-content: initial;
}
.project-type-chips .project-chip {
width: 100%;
justify-content: center;
font-size: 14px;
padding: 12px 10px;
}
.project-chip .chip-icon i {
font-size: 14px;
}
}