ֿ/*
Theme Name: TheSample Custom Theme
Theme URI: https://thesample.co.il
Author: Gustavo & Gemini
Description: Production-ready, cutting-edge, cinematic dark-mode theme for TheSample Hip-Hop Magazine (2026 Edition). Built for speed, high-end visuals, and absolute control.
Version: 2.1
Text Domain: thesample
*/

/* ==========================================================================
   1. CORE VARIABLES & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&family=Syncopate:wght@700&display=swap');

:root {
    /* פלטת צבעים אפלה ומחוספסת */
    --bg-base: #030303;
    --bg-surface: #0a0a0a;
    --bg-surface-hover: #121212;
    --accent: #ff3333;             /* אדום היפ-הופ ברוטליסטי */
    --accent-rgb: 255, 51, 51;
    --accent-neon: #00ffcc;        /* ניאון עדין לאלמנטים חיים */
    
    /* צבעי טקסט */
    --text-primary: #ffffff;
    --text-secondary: #eaeaea;
    --text-muted: #888888;
    
    /* אלמנטים של עיצוב ממשק */
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-border-hover: rgba(255, 255, 255, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* קבועי פריסה */
    --site-max-width: 1440px;
    --header-height: 80px;
    
    /* אנימציות ומעברים */
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl; /* תמיכה מלאה בעברית */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* עיצוב אישי ויוקרתי לפס הגלילה (Scrollbar) של הדפדפן */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* בחירת טקסט (Selection) */
::selection {
    background: var(--accent);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. STRUCTURAL LAYOUT & HEADER (תפריט עליון מטושטש)
   ========================================================================== */
.site-header {
    background: rgba(3, 3, 3, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.header-container {
    max-width: var(--site-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* לוגו המותג: שימוש בפונט אגרסיבי ורחב של היפ-הופ */
.site-branding h1 {
    margin: 0;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.site-branding a {
    background: linear-gradient(90deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-branding a:hover {
    opacity: 0.8;
}

/* תפריט הניווט */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.main-navigation a:hover {
    color: #fff;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 40px 30px;
}

/* ==========================================================================
   4. CINEMATIC HERO SECTION (כתבה ראשית קולנועית)
   ========================================================================== */
.hero-post {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    max-height: 800px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-post .post-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 1.2s var(--transition-smooth);
}

/* מעבר צבעים קולנועי שמאפשר לטקסט לצוף בצורה קריאה */
.hero-post .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(3, 3, 3, 1) 0%, 
        rgba(3, 3, 3, 0.8) 30%, 
        rgba(3, 3, 3, 0.3) 70%, 
        rgba(3, 3, 3, 0.1) 100%);
    z-index: 2;
}

.hero-post .post-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    max-width: 900px;
}

/* תגית קטגוריה בולטת */
.category-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-post .post-content h2 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-post .post-content h2 a {
    color: #fff;
}

.hero-post .post-content p {
    font-size: 1.25rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    max-width: 750px;
}

/* אפקט ריחוף לכתבה הראשית */
.hero-post:hover .post-thumbnail img {
    transform: scale(1.04);
}

/* ==========================================================================
   5. BENTO EDITORIAL GRID & GLASS PANELS (רשת הכתבות המשניות)
   ========================================================================== */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--transition-smooth), 
                border-color var(--transition-smooth), 
                box-shadow var(--transition-smooth);
}

.grid-post {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.grid-post .post-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #111;
}

.grid-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.grid-post .post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.grid-post .post-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.grid-post .post-content h3 a {
    color: var(--text-primary);
}

.grid-post .post-content h3 a:hover {
    color: var(--accent);
}

.grid-post .post-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* אפקטים ואינטראקציות פרימיום במעבר עכבר */
.glass-panel:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.grid-post:hover .post-thumbnail img {
    transform: scale(1.06);
}

/* ==========================================================================
   6. PREMIUM METADATA (פרטי כותב ותאריך)
   ========================================================================== */
.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-meta .author-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.post-meta .separator {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* ==========================================================================
   7. LIVE INDICATOR (סימון כתבות חמות או שידורים)
   ========================================================================== */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 204, 0.1);
    color: var(--accent-neon);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.live-indicator .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 0 6px rgba(0, 255, 204, 0); }
    100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

/* ==========================================================================
   8. FOOTER DESIGN (תחתית האתר)
   ========================================================================== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    padding: 60px 0 30px 0;
}

.footer-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-credits {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   9. RESPONSIVE DESIGN (רספונסיביות והתאמה למובייל)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-post .post-content h2 {
        font-size: 2.8rem;
    }
    .magazine-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .header-container {
        padding: 0 20px;
    }
    .main-navigation {
        display: none; /* במובייל מומלץ בהמשך להוסיף תפריט המבורגר */
    }
    .main-container {
        padding: 20px 20px;
    }
    .hero-post {
        height: 60vh;
        border-radius: var(--radius-md);
        margin-bottom: 30px;
    }
    .hero-post .post-content {
        padding: 25px;
    }
    .hero-post .post-content h2 {
        font-size: 2rem;
    }
    .hero-post .post-content p {
        font-size: 1rem;
    }
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} /* <--- תוקן ה-Syntax Error שהיה כאן! ---> */

/* ==========================================================================
   10. MICRO-UI & MAGAZINE DETAILS (הפרטים הקטנים)
   ========================================================================== */

/* תגיות קטגוריה (Badges) */
.category-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
}

/* התגית בתוך הגריד יושבת על התמונה */
.grid-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* טקסט תקציר (Excerpt) */
.excerpt-text p {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.grid-excerpt p {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

/* כפתורי קריאה */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000 !important;
    padding: 12px 24px;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--accent);
    color: #ffffff !important;
    gap: 12px;
}

.post-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.read-more-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-text:hover {
    color: var(--accent);
}

/* כותרת אזור גריד */
.section-title {
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 900;
    color: var(--text-primary);
}

.title-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border) 0%, transparent 100%);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

/* ==========================================================================
   11. SINGLE POST (עיצוב עמוד כתבה פנימי - מעודכן)
   ========================================================================== */

/* עטיפה מרכזית לכתבה */
.single-post-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* אזור התמונה העליונה (Hero) - גרסה מעודנת ופרופורציונלית */
.article-header {
    position: relative;
    width: 95%; /* משאיר שוליים קטנים בצדדים */
    max-width: 1200px; /* מונע מהתמונה להימרח על מסכי ענק */
    margin: 40px auto 50px auto; /* ממרכז את התמונה ומרחיק מהתפריט */
    height: 40vh; /* גובה סולידי יותר */
    min-height: 350px;
    max-height: 500px; /* חסימה של הגובה המקסימלי */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: var(--radius-lg); /* פינות מעוגלות כמו בכרטיסיות */
    overflow: hidden; /* חותך את התמונה כדי לשמור על הפינות המעוגלות */
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* מתמקד בחלק העליון-מרכזי של התמונה */
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3,3,3,0.95) 0%, rgba(3,3,3,0.6) 40%, transparent 100%);
    z-index: 2;
}

/* טקסט כותרת הכתבה (יושב על התמונה) */
.article-header-text {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
    padding: 0 30px 40px 30px;
    text-align: center;
}

.article-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 15px 0 20px 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.article-meta {
    justify-content: center;
    font-size: 1rem;
    color: #cccccc;
}

/* גוף הכתבה - אופטימיזציה לקריאה */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2, .article-content h3 {
    color: var(--text-primary);
    margin: 40px 0 20px 0;
}

/* ציטוטים בתוך הכתבה (Blockquotes) */
.article-content blockquote {
    border-right: 4px solid var(--accent);
    margin: 40px 0;
    padding: 20px 30px 20px 0;
    background: var(--glass-bg);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
}

/* תמונות וסרטונים בתוך הכתבה */
.article-content img,
.article-content iframe {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(255,51,51,0.4);
    text-underline-offset: 4px;
}

.article-content a:hover {
    color: #fff;
    text-decoration-color: var(--accent);
}

/* תגיות הכתבה */
.article-footer {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    border-top: 1px solid var(--glass-border);
}

.post-tags a {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.post-tags a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* התאמה למובייל של הכתבה */
@media (max-width: 768px) {
    .article-header {
        height: 50vh;
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }
    .article-main-title {
        font-size: 2.2rem;
    }
    .article-content {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* ==========================================================================
   12. RELATED POSTS (כתבות קשורות)
   ========================================================================== */
.related-posts-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 30px;
}

.related-posts-section .post-thumbnail {
    height: 180px; 
}

.related-posts-section .post-content {
    padding: 20px;
}

.related-posts-section h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* ==========================================================================
   13. HEADER NAVIGATION & SEARCH (תפריט וחיפוש משודרגים)
   ========================================================================== */

/* סידור רשימת התפריט הדינמי של וורדפרס */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.main-navigation li {
    display: inline-block;
}

.main-navigation a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent);
}

/* עיצוב שדה החיפוש הכהה */
.header-search .search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4px 15px;
    transition: all 0.3s ease;
}

.header-search .search-form:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.2);
}

.header-search .search-field {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    outline: none;
    padding: 6px 0;
    width: 180px;
    transition: width 0.3s ease;
}

/* אפקט הרחבה של שדה החיפוש כשלוחצים עליו */
.header-search .search-field:focus {
    width: 240px;
}

.header-search .search-submit {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    margin-right: 8px;
    transition: color 0.3s ease;
}

.header-search .search-submit:hover {
    color: var(--accent);
}

/* התאמה רספונסיבית להאדר */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }
    .site-header {
        height: auto;
    }
    .main-navigation ul {
        gap: 20px;
    }
    .header-search .search-field {
        width: 140px;
    }
    .header-search .search-field:focus {
        width: 180px;
    }
/* ==========================================================================
   !!! תיקון קריטי: דריסת סגנונות ברירת המחדל של וורדפרס !!!
   ========================================================================== */

/* 1. החזרת הרקע האפל בכוח */
html, body {
    background-color: #030303 !important;
    color: #ffffff !important;
}

/* 2. הקטנת ההירו (התמונה הראשית) לפרופורציה יוקרתית */
.hero-post {
    height: 45vh !important;
    min-height: 400px !important;
    max-height: 550px !important;
    border-radius: 24px !important;
    margin-top: 10px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9) !important;
}

/* 3. תיקון צבעי הטקסט שהפכו לשחורים */
.section-title h3, 
.grid-post h3 a, 
.hero-post h2 a {
    color: #ffffff !important;
}

.grid-excerpt p, 
.post-meta, 
.post-meta span {
    color: #aaaaaa !important;
}

/* 4. תיקון כרטיסיות הגריד (אפקט הזכוכית שעל הרקע השחור) */
.glass-panel {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 5. תיקון ההאדר העליון */
.site-header {
    background: rgba(5, 5, 5, 0.85) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.read-more-text {
    color: #ff3333 !important;
}
/* ==========================================================================
   14. THE HAMMER (דריסה סופית של העיצוב הלבן של וורדפרס)
   ========================================================================== */

/* 1. אילוץ מוחלט של מסך כהה (Dark Mode) */
html, body {
    background-color: #030303 !important;
    background: #030303 !important;
    color: #ffffff !important;
}

/* 2. סידור ההירו של עמוד הבית שלא יימרח וישתלט על כל המסך */
.hero-post {
    width: 95% !important;
    max-width: 1300px !important;
    height: 50vh !important;
    min-height: 400px !important;
    max-height: 550px !important;
    margin: 30px auto 50px auto !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9) !important;
}

/* 3. הכרחת הכותרות להיות לבנות ולא שחורות */
.post-content h2 a, 
.post-content h3 a, 
.section-title h3 {
    color: #ffffff !important;
}

/* 4. הכרחת טקסטים קטנים (תאריכים ותקצירים) להיות אפורים קריאים */
.excerpt-text p, 
.grid-excerpt p, 
.post-meta,
.post-meta span {
    color: #aaaaaa !important;
}

/* 5. תיקון צבע כרטיסיות הגריד הלבנות למראה זכוכית אפל */
.glass-panel {
    background: rgba(15, 15, 15, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 6. תיקון צבע ההאדר העליון */
.site-header {
    background: rgba(3, 3, 3, 0.85) !important;
}
}