/* F1IL – שיפור תצוגת פוסט בודד
 * קובץ זה לא מוחק את העיצוב הקיים של התבנית, אלא “עוטף” אותו בחוקים עדינים.
 * אם משהו נשבר – פשוט לכבות את התוסף.
 */

/* מעט רוחב ונשימה לתוכן */
body.single #primary,
body.single .site-main,
body.single .content-area {
    max-width: 960px;
    margin: 40px auto 80px;
    padding: 0 16px;
    box-sizing: border-box;
}

/* כותרת + תאריך */
body.single .entry-header {
    text-align: right;
    margin-bottom: 24px;
}

body.single .entry-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 8px;
}

body.single .entry-meta,
body.single .posted-on {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

/* תמונה ראשית */
body.single .post-thumbnail img,
body.single .entry-header img.wp-post-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 0 0 24px;
}

/* טקסט הפוסט */
body.single .entry-content {
    font-size: 17px;
    line-height: 1.8;
}

body.single .entry-content p {
    margin: 0 0 16px;
}

body.single .entry-content h2,
body.single .entry-content h3,
body.single .entry-content h4 {
    margin: 28px 0 12px;
    font-weight: 700;
}

/* מובייל – קצת מצמצמים גדלים */
@media (max-width: 768px) {
    body.single #primary,
    body.single .site-main,
    body.single .content-area {
        margin: 24px auto 48px;
        padding: 0 12px;
    }

    body.single .entry-title {
        font-size: 24px;
    }
}
