/* ===================================================
   קטגוריות משרות - mishrot-categories.css
   Author: לינה למדן | https://www.theglyph.digital/lina/
   Version: 1.0
   צבעים: #fcb53f (כתום), #294c71 (כחול כהה)
   =================================================== */

.mishrot-cats-wrap {
    direction: rtl;
    font-family: 'Arimo', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── גריד 4 עמודות ── */
.mishrot-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    align-items: start;
}

/* ── עמודה ── */
.mishrot-cat-col {
    break-inside: avoid;
}

/* ── כותרת ראשית ── */
.mishrot-cat-parent {
    font-size: 16px;
    font-weight: 700;
    color: #fcb53f;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #fcb53f;
    font-family: 'Arimo', sans-serif;
}

/* ── רשימת תת-קטגוריות ── */
.mishrot-cat-children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mishrot-cat-children li {
    margin-bottom: 6px;
}

.mishrot-cat-children a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    transition: color 0.15s;
    line-height: 1.4;
}

.mishrot-cat-children a:hover {
    color: #294c71;
    text-decoration: none;
}

.mishrot-cat-arrow {
    color: #fcb53f;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── רספונסיב ── */
@media (max-width: 900px) {
    .mishrot-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .mishrot-cats-grid {
        grid-template-columns: 1fr;
    }
}
