.project {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    color: inherit;
}

.project:not(:last-of-type) {
    border-bottom: 1px solid var(--fg2);
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
}

.project:hover {
    text-decoration: none;
}

.project:hover h4 {
    text-decoration: underline;
}

.project img {
    width: auto;
    height: 2em;
    flex: none;
}

.project div,
.project h4,
.project p {
    overflow: hidden;
}

.project div {
    flex: 1;
}

.project h4,
.project p {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project h4 {
    margin: 0;
}

.project p {
    margin: 0.15rem 0 0;
}