/**
 * עיצוב תוית כותרת התמונה
 * מציג את ה-TITLE של התמונה מתחת לבלוק התמונה
 */

/* מיכל התמונה עם התוית */
.wp-block-image-with-title {
    position: relative;
    /* לא להגדיר display או width כדי לא להשפיע על מיקום התמונה */
}

/* עיצוב התוית */
.image-title-label {
    display: inline-block; /* רק באורך הטקסט */
    margin-top: 8px;
    margin-right: 0; /* מיושר לימין */
    margin-left: auto;
    padding: 6px 12px;
    background: #fcf8ed; /* רקע בז' בהיר */
    border: 1px solid #8B4513; /* מסגרת חומה */
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
    border-radius: 4px;
    font-style: italic;
}

/* תיקון מרכוז תמונות - חשוב! */
.wp-block-image-with-title.aligncenter,
.wp-block-image-with-title .wp-block-image.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* התוית בתמונות ממורכזות - מיושרת לימין של התמונה */
.wp-block-image-with-title.aligncenter .image-title-label {
    display: block;
    text-align: right;
}

/* עיצוב לתמונות מיושרות לשמאל */
.wp-block-image-with-title.alignleft .image-title-label {
    display: block;
}

/* עיצוב לתמונות מיושרות לימין */
.wp-block-image-with-title.alignright .image-title-label {
    display: block;
}

/* עיצוב לתמונות ברוחב מלא */
.wp-block-image-with-title.alignfull .image-title-label,
.wp-block-image-with-title.alignwide .image-title-label {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* תצוגה בעורך גוטנברג */
.editor-styles-wrapper .image-with-title-wrapper {
    position: relative;
    display: block;
}

.editor-styles-wrapper .image-title-label.editor-preview {
    display: inline-block !important;
    margin-top: 8px;
    margin-right: 0;
    margin-left: auto;
    padding: 6px 12px;
    background: #fcf8ed;
    border: 1px solid #8B4513;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
    border-radius: 4px;
    font-style: italic;
}

/* תיקון למרכוז בעורך */
.editor-styles-wrapper .wp-block[data-align="center"] .image-with-title-wrapper {
    text-align: center;
}

.editor-styles-wrapper .wp-block[data-align="center"] .image-title-label.editor-preview {
    display: block !important;
    text-align: right;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .image-title-label {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* עיצוב מיוחד לגלריות */
.wp-block-gallery .wp-block-image-with-title {
    width: auto;
}

.wp-block-gallery .image-title-label {
    font-size: 12px;
    padding: 4px 8px;
    margin-top: 4px;
}

/* אפקט hover אופציונלי */
.image-title-label:hover {
    background: #e8e8e8;
    transition: background 0.3s ease;
}

/* עיצוב לתמונות עם קישור */
.wp-block-image-with-title a {
    display: block;
}

/* וודא שהתוית לא מושפעת מהקישור */
.wp-block-image-with-title a + .image-title-label {
    cursor: default;
}

/* תמיכה בערכת צבעים כהה */
@media (prefers-color-scheme: dark) {
    .image-title-label {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .image-title-label:hover {
        background: #3a3a3a;
    }
}

/* עיצוב מיוחד עבור כותרות ארוכות */
.image-title-label {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* הסתרת התוית בהדפסה (אופציונלי) */
@media print {
    .image-title-label {
        display: none;
    }
}
