.new-projects-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.new-project-card {
    display: flex;
    align-items: flex-start;
    background: var(--theme-color-background-content);
    border-radius: var(--layout-island-border-radius);
    padding: 16px;
    gap: 12px;
    transition: opacity .5s ease-in-out, filter .2s ease-in-out, transform .05s ease-in-out, background 0.25s ease-in-out;
}
.new-project-card:hover {
    filter: brightness(.95);
    background: var(--theme-color-background-content);
}
.new-project-card:active {
    filter: brightness(.8);
    scale: .95;
}
.new-project-icon {
    background: var(--theme-color-background);
    border: 1px solid var(--theme-color-border);
    box-shadow: var(--project_card-box-shadow);
    width: 96px;
    height: 96px;
    border-radius: calc(96px * .16667);
    object-fit: cover;
    flex-shrink: 0;
}
.new-project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: -webkit-fill-available;
}
.new-project-header {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}
.new-project-title {
    font-weight: 600;
    font-size: 18px;
}
.new-project-author {
    margin-left: 4px;
    font-size: 16px;
    color: var(--theme-color-text-secondary);
    font-weight: 500;
}
.new-project-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    margin: 0;
    line-height: normal;
}
.new-project-tags {
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: auto;
}
.new-project-tags .lucide-tags {
    fill: none;
}
.new-tag {
    background: var(--theme-color-button-minimal);
    font-size: 14px;
    font-weight: 500;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 6px;
    line-height: 19px;
    border-radius: 999px;
}
.new-project-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: auto;
    height: -webkit-fill-available;
}
.new-stat {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: normal;
}
.new-stat svg {
    fill: none;
}
.new-stat .new-label {
    color: var(--theme-color-text-secondary);
}
.new-updated {
    margin-top: auto;
    font-size: 16px;
}
.new-updated span {
    color: var(--theme-color-text-secondary);
}