.maker__wrap {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.maker__wrap h3 {
    padding: 0 0 0 0.5em;
    border-left: 4px solid var(--blue);
}

.items__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, 290px);
    gap: 1em;
}

.items__wrap a {
    width: fit-content;
    display: block;
}

.items__wrap a:hover .item img {
    transform: scale(1.05);
}

.item {
    width: 100%;
    height: 100%;
    border: 1px solid var(--blue);
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    overflow: hidden;
}

.item img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width:900px) {
    .items__wrap {
        justify-content: center;
    }
}