.single-post-content {
    font-family: 'Readex Pro', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    
    line-height: 1.75; 
    font-size: 1.125rem; 
    color: #1f2937; 
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3 {
    color: #111827;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    border-bottom: none !important; 
    padding-bottom: 0; 
}

header.entry-header .entry-title {
    font-size: 1.25rem; 
    line-height: 2.25rem;
}

@media (min-width: 1024px) { 
    header.entry-header .entry-title {
        font-size: 1.7rem; 
        line-height: 2.5rem;
    }
}

.single-post-content hr {
    display: none;
}

.single-post-content a {
    color: var(--color-primary); 
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.single-post-content a:hover {
    color: var(--color-primary-hover);
}

.single-post-content img {
    display: block; 
    
    width: min(600px, 100%) !important; 
    max-width: 100%; 
    height: auto !important; 
    
    margin-left: auto;
    margin-right: auto;
    
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.single-post-content p {
    margin-bottom: 1.5em;
}

.single-post-content ul,
.single-post-content ol {
    margin-top: 1em;
    margin-bottom: 1.5em;
    padding-left: 1.75em; 
}

.single-post-content ul {
    list-style: disc; 
}

.single-post-content ol {
    list-style: decimal; 
}

.single-post-content li {
    margin-bottom: 0.5em;
}

#comments {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

#respond .comment-form-fields-row {
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem; 
    margin-bottom: 1rem;
}

#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    width: calc(25% - 0.75rem); 
    margin: 0; 
}

#respond .form-submit {
    width: calc(25% - 0.75rem); 
    margin: 0;
    align-self: flex-end; 
    padding-bottom: 0.75rem; 
}

#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}
#respond textarea {
    min-height: 100px;
}

#respond .comment-form-cookies-consent {
    display: none;
}

#respond input[type="submit"] {
    cursor: pointer;
    width: 100%; 
    padding: 0.75rem 0; 
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}
#respond input[type="submit"]:hover {
    background-color: var(--color-primary-hover);
}


.comment-list {
    list-style: none;
    padding: 0;
}
.comment-body {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}
.comment-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.comment-author {
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .single-post-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    #respond .comment-form-author,
    #respond .comment-form-email,
    #respond .comment-form-url,
    #respond .form-submit {
        width: 100%;
        margin-bottom: 1rem;
        align-self: auto;
        padding-bottom: 0;
    }
    #respond .comment-form-fields-row {
        flex-direction: column;
    }
}