/* Typography and Content */

/* Add some spacing for better readability */
body {
    line-height: 1.6;
}

/* Hero section optimization */
.hero {
    padding: 1.5rem;
    margin-bottom: 0;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Csak a cikkek hero címei legyenek fehérek */
.post .hero h1,
article .hero h1 {
    color: #ffffff !important;
    text-shadow: none !important;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-text, #666);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Improved markdown formatting */
.e-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.e-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.e-content ol, .e-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.e-content ol li, .e-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.e-content ul ul, .e-content ol ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.e-content p {
    margin-bottom: 1rem;
}

.e-content strong {
    font-weight: 600;
}