.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;
}

.btn-toast-small {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s, background 0.2s;
}

.btn-toast-small:hover {
    transform: scale(1.05);
    background: #fff;
}

.btn-toast-small strong {
    background: var(--accent-color);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-right: 4px;
}