.entry-content {
    font-family: 'Readex Pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.75;
    font-size: 1.125rem;
    color: #1f2937;
}

.entry-content h2,
.entry-content h3 {
    color: #111827;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.75em;
    line-height: 1.25;
}

.entry-content h2 {
    font-size: 2.25rem; 
    border-bottom: 1px solid #e5e7eb; 
    padding-bottom: 0.5em;
}

.entry-content h3 {
    font-size: 1.5rem; 
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content a {
    color: var(--color-primary); 
    text-decoration: underline;
    transition: color 0.2s;
}
.entry-content a:hover {
    color: var(--color-primary-hover);
}

.entry-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.entry-content ul,
.entry-content ol {
    margin-top: 1em;
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}