/* COMPONENT ITEM (home + liste)
   ============================================================= */
.component-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.15s;
}

.component-item:hover {
    padding-left: 10px;
    color: inherit;
}

.component-name {
    font-size: 18px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 4px;
}

.component-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.component-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
    margin-left: 24px;
}
