/* מסכי רשימה (כלים/ידע/פרויקטים/הגדרות) — שפת HaHo: כרטיס שורה לבן ושטוח. */

.shelf {
    max-width: 44rem;
    margin-inline: auto;
    padding-block: var(--space-3);
}

.shelf__title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-block: 0;
}

.shelf__sub {
    color: var(--text-muted);
    margin-block: var(--space-1) var(--space-4);
}

.shelf__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.shelf-card {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--surface);
    border-radius: var(--radius);
    padding: var(--space-2) var(--space-3);
}

.shelf-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bg);
    color: var(--text);
    flex: none;
}

.shelf-card__body {
    flex: 1;
    min-width: 0;
}

.shelf-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.shelf-card__text {
    margin: 0.15rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.shelf-card__value {
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}
