.entry-meta {
  display: none;
}

/* מבנה הגריד */
.bama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* עיצוב הכרטיסייה */
.bama-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bama-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

/* עיצוב הכותרת */
.bama-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.4em;
}

.bama-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.bama-card h3 a:hover {
    color: #0073aa;
}

/* עיצוב שם הכותב */
.bama-meta {
    font-size: 0.95em;
    color: #7f8c8d;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

.bama-meta a {
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
}






/* מיכל הקבוצות */
.hierarchy-container {
    padding: 20px 0;
}

/* כותרת הקבוצה (הדרגה השנייה בהיררכיה) */
.group-title {
    background: #f1f5f9;
    padding: 15px 25px;
    border-right: 5px solid #0073aa;
    margin: 40px 0 20px 0;
    font-size: 1.5em;
    color: #1e293b;
    border-radius: 4px;
}

/* הגריד של הכרטיסיות בתוך כל קבוצה */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none !important;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.cat-card:hover {
    border-color: #0073aa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.cat-card h3 {
    margin: 0 0 12px 0;
    color: #1a202c;
    font-size: 1.1em;
}

.special-group .group-title {
    background: #f0f7ff;
    border-right-color: #3182ce;
}