/* 1. הגדרות לוגו וכותרת האתר */
.site-branding, 
.header-image-wrapper img {
    max-height: 200px !important;
    height: 200px !important;
    object-fit: contain !important;

/* 1. סדר תצוגה בפוסט בודד: תמונה מעל הכותרת ומניעת חיתוך פנים */
.single-post .site-main > article {
    display: flex;
    flex-direction: column;
}

.single-post .post-thumbnail {
    order: -1;
    margin-bottom: 25px;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto !important; /* מבטל את הגובה הקבוע שחתך את הראש */
    max-height: 750px; /* מאפשר מספיק גובה לתמונות אורך */
    object-fit: contain; /* מציג את כל התמונה בלי לחתוך כלום */
    background-color: #f9f9f9; /* רקע עדין למקרה שהתמונה צרה מהמסגרת */
    border-radius: 4px;
}

.single-post .entry-header {
    order: 0;
    text-align: right;
}}

/* 2. הגדרות טיפוגרפיה (גדלי גופנים ומרווחים) */

/* כותרת הפוסט הראשית */
.single-post .entry-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
}

/* כותרת משנה H2 - גדולה ומרווחת */
.single-post .entry-content h2 {
    font-size: 22px !important;
    line-height: 1.4 !important; /* פותר את הצפיפות */
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

/* כותרת משנה H3 - קטנה יותר מ-H2 */
.single-post .entry-content h3 {
    font-size: 19px !important;
    line-height: 1.4 !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
}

/* טקסט הפסקה הרגיל (תוכן הכתבה) */
.single-post .entry-content p {
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5em !important;
}}

/* ריווח בתחתית התוכן */
.single-post .entry-content {
    margin-bottom: 40px;
}
/* הגדלת הרווח בין סוף הטקסט לתגיות */
.single-post .entry-content {
    margin-bottom: 60px !important; /* הגדלתי ל-60 כדי שתוכל לראות שינוי ברור */
    display: block;
    clear: both;
}

.single-post .tags-links, 
.single-post .entry-footer {
    margin-top: 40px !important;
    display: block;
    clear: both;
}
/* מחיקת ניווט בין כתבות (הקודם/הבא) */
.post-navigation, 
.nav-links, 
.nav-previous, 
.nav-next {
    display: none !important;
}}