.project-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.project-item {
    display: flex;
    align-items: stretch;
    gap: 15px;
    background: transparent;
    border: 1px solid grey;
    padding: 5px;
}

.project-img {
    flex: 0 0 25%;
    max-width: 25%;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-content {
    flex: 1 1 0%;
    min-width: 0;
    padding: 5px 0 5px;
}

.project-desc p {
    margin-bottom: 5px;
}

.project-desc p:not(:first-child) {
    text-indent: 1em;
}

.project-title {
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .project-item {
        flex-direction: column;
    }

    .project-content,
    .project-img {
        flex: unset;
        width: 100%;
        max-width: 100%;
    }

    .project-content {
        padding-inline: 10px;
    }
}