.home-section {
    margin-block-start: var(--spacing-xl);
}

.section-title {
    margin-block-end: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: start; /* מבטיח שהכותרת לא תברח שמאלה */
}

/* =========================================
   אזור ההירו (Hero) - 1200x600
   ========================================= */
.hero-section {
    width: 100%;
    aspect-ratio: 2 / 1; /* אוכף את פרופורציית ה-CMS */
    max-height: 500px; /* עוצר את התמונה מלהיות עצומה במסכי 4K */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.hero-title {
    font-size: 1.1rem; 
    font-weight: 600; 
    margin: 0;
}

/* =========================================
   עיצוב אזור הקלאסיקות - מיושר פלס לגריד
   ========================================= */
.moms-classics {
    background-color: #f8faf9;
    border-radius: 12px;
    padding-block: var(--spacing-lg);
    
    /* מתיחת הרקע החוצה ודחיפת התוכן פנימה */
    margin-inline: -1rem;
    padding-inline: 1rem;
}

/* ביטול דריסות קודמות של כותרות וגרידים פנימיים */
.moms-classics .section-title,
.moms-classics .recipe-grid {
    padding-inline: 0;
}

@media (min-width: 768px) {
    .moms-classics {
        margin-inline: -2rem;
        padding-inline: 2rem;
    }
}

/* =========================================
   תג קאונטר (הרמת כוסית) על תמונות גריד
   ========================================= */
.recipe-toast-badge {
    position: absolute;
    top: 10px;
    left: 10px; /* ממוקם בפינה השמאלית העליונה */
    z-index: 10;
}

/* =========================================
   עיצוב הבאנר המרכזי (אירועים)
   ========================================= */
.event-banner {
    background-color: #f8faf9;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    margin-block: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.event-banner-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-block-start: 0;
    margin-block-end: 0.5rem;
}

.event-banner-content p {
    font-size: 1.2rem;
    color: #444;
    margin: 0;
}

/* =========================================
   תג אייקון סטטי על תמונות גריד
   ========================================= */
.recipe-icon-badge {
    position: absolute;
    top: 10px;
    left: 10px; 
    background: rgba(255, 255, 255, 0.50); /* רקע חצי שקוף ועדין */
    border-radius: 50%;
    width: 28px; /* קוטר קטן יותר */
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem; /* אייקון מותאם לגודל החדש */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* צל עדין יותר */
    z-index: 10;
}

/* =========================================
   כותרת גריד מפלצת וכפתור (מבוסס על עיצוב הקטגוריות)
   ========================================= */
.subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.subcategory-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0;
}

.more-btn {
    font-size: 0.9rem;
    color: #5c7569; 
    background-color: #f0f4f2; 
    text-decoration: none;
    padding: 4px 14px;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.more-btn:hover {
    background-color: #5c7569;
    color: #ffffff;
}