* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    z-index: 100;
}

.nav-home {
    color: #064e3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-home:hover {
    color: #065f46;
}

.post {
    max-width: 680px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

.post-header {
    margin-bottom: 4rem;
}

.post-date {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.post-header h1 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.post-content p {
    margin-bottom: 1.75rem;
}

.post-content h2 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: #0a0a0a;
}

.post-content h3 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    color: #0a0a0a;
}

.post-content blockquote {
    border-left: 4px solid #065f46;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #4a5568;
    font-size: 1.15rem;
}

.post-content a {
    color: #065f46;
    text-decoration: none;
    border-bottom: 1px solid #065f46;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #064e3b;
    border-bottom-color: #064e3b;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.back-link {
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #064e3b;
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    padding: 3rem 0 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 4rem;
}




/* Title with English subtitle */
.post-header h1 .subtitle-eng {
    display: block;
    font-size: 0.6em;
    color: #64748b;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 0;
}

/* Hebrew quote blocks */
.hebrew-quote {
    background: #f8f9fa;
    border-right: 4px solid #065f46;
    border-left: none;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: normal;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.9;
    border-radius: 0 4px 4px 0;
}

.hebrew-quote strong {
    color: #065f46;
    font-size: 1.1em;
}

/* Post image */
.post-image {
    margin: 3rem 0;
    text-align: center;
}

.post-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-image figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Section break */
.section-break {
    border: none;
    border-top: 2px solid #e5e5e5;
    margin: 3rem 0;
}

/* Final thought emphasis */
.final-thought {
    background: #f0f9ff;
    border-left: 4px solid #065f46;
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.final-thought em {
    font-style: normal;
}






@media (max-width: 768px) {
    .post {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .post-header h1 {
        font-size: 2.5rem;
    }

    .post-content {
        font-size: 1.05rem;
    }

    .post-content h2 {
        font-size: 1.75rem;
    }

    .hebrew-quote {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

}