/* Custom Theme Styles */

:root {
    --primary-color: #0d6efd;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.flexible-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.site-header .nav .menu-item a {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.site-header .nav .menu-item a:hover {
    color: var(--primary-color);
}

.entry-content img {
    max-width: 100%;
    height: auto;
}
