.elementor-2609 .elementor-element.elementor-element-e5393ec{--display:flex;--min-height:0vh;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2609 .elementor-element.elementor-element-e5393ec{--content-width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-3425e1a */-cc793ad *//* קונטיינר של כל המשרות */
.jobs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center; /* מיקום הכרטיסים למרכז */
}

/* כרטיס משרה ופרסומת */
.job, .advertisement {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(30% - 20px); /* שלושה כרטיסים בשורה */
    max-width: calc(30% - 20px); /* הגבלת רוחב מקסימלי */
    min-width: 300px; /* גודל מינימלי */
    max-height: 550px; /* גובה מקסימלי */
    height: %; /* התאמה מלאה של הגובה */
    overflow: hidden; /* חיתוך תוכן חורג */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px; /* מרווח תחתון להבטחת רווחים בין כרטיסים */
    box-sizing: border-box; /* מניעת בעיות מרווח פנימי */
}

/* כרטיס פרסומת */
.advertisement {
    background: #f9f9f9; /* צבע רקע לפרסומת */
    text-align: center; /* מיקום תוכן במרכז */
    align-items: center;
    justify-content: center;
    font-size: 18px; /* טקסט קריא */
    color: #333; /* צבע טקסט כהה יותר */
    word-wrap: break-word; /* שבירת מילים ארוכות */
    overflow-wrap: break-word;
}

/* ריחוף על כרטיס משרה */
.job:hover, .advertisement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* כותרת משרה */
.job h2 {
    margin: 0;
    color: #007cba;
    font-size: 24px;
}

/* טקסט תיאור המשרה */
.job p {
    margin: 10px 0;
    color: #555;
}

/* טיימר מחיקת משרה */
.job-timer {
    font-size: 18px;
    font-weight: bold;
    color: #ff9900;
    margin-top: auto;
}

/* כפתור */
.button {
    --color: #ffa500;
    font-family: inherit;
    display: inline-block;
    width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    cursor: pointer;
    margin-top: 10px; /* מרווח עליון */
    font-size: 17px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
    text-align: center; /* מיקום הטקסט במרכז */
}

.button::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 150px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
}

.button:hover {
    color: white;
}

.button::before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.button:hover::before {
    top: -30px;
    left: -30px;
}

/* רספונסיביות */
@media (max-width: 1024px) {
    .job, .advertisement {
        flex: 1 1 calc(45% - 20px); /* שני כרטיסים בשורה */
        max-width: calc(45% - 20px);
    }
}

@media (max-width: 768px) {
    .job, .advertisement {
        flex: 1 1 calc(100% - 20px); /* כרטיס אחד בשורה */
        max-width: calc(100% - 20px);
        margin: 0 auto; /* ממרכז את הכרטיס */
    }
}

@media (max-width: 480px) {
    .job, .advertisement {
        flex: 1 1 calc(100% - 20px); /* כרטיס אחד בשורה */
        max-width: calc(100% - 20px);
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-e262c72 *//* יישור כל המכולות */
.job-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* יישור למרכז */
    gap: 20px;
    margin: 20px 0;
}

/* כרטיסי המשרות והפרסומות שומרים על גודלם ויוצרים קו אחיד */
.job , .advertisement {
    margin: 0 auto; /* מרכז את הכרטיסים בצורה אופקית */
}/* End custom CSS *//* End custom CSS */