.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 1.5em;
    background-color: #eee;
}

.project-name {
    margin: 0;
}

.project-item .project-name,
.project-item .project-alias {
    word-break: break-all;
}

.project-item img {
    max-width: 100%;
}
