html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* WP custom logo fix */
.custom-logo-link img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

/* Pagination */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0 2px;
    text-decoration: none;
    transition: background-color 0.15s;
}

.page-numbers:hover {
    background-color: #f0fdf4;
    color: #15803d;
}

.page-numbers.current {
    background-color: #15803d;
    color: white;
}

.page-numbers.dots {
    background: none;
    cursor: default;
}

/* Prose styles for single post / page content */
.prose p { margin-bottom: 1rem; color: #4b5563; line-height: 1.75; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: #4b5563; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; color: #4b5563; }
.prose li { margin-bottom: 0.25rem; }
.prose a { color: #15803d; }
.prose a:hover { text-decoration: underline; }
.prose strong { font-weight: 700; color: #111827; }
.prose blockquote { border-left: 4px solid #15803d; padding-left: 1rem; color: #6b7280; font-style: italic; margin: 1.5rem 0; }
.prose img { border-radius: 12px; max-width: 100%; height: auto; }
