body {
    font-family: "Helvetica Neue", sans-serif;
    background-color: white;
    margin: 40px;
    padding: 10px;
    
}

tr>*+* {
    padding-left: 4em;
}

h1,
h2,
h3,
h4,
q {
    font-family: Garamond, serif;
}

nav {
    display: flex;
    justify-content: space-between;
    background: white;
    color: black;
    padding: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
}

.article-image {
    display: block;
    max-width: 40%;
    height: auto;
    float: left;
    margin: 20px 0;
}

.image-block::after {
    content: "";
    display: block;
    clear: both;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.excerpt {
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .article-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}

/* === Branding Logo and Tagline Styles === */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
}

.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
}

.logo {
    height: 120px;
    width: auto;
}

.tagline {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-top: 0.1rem;
}

.site-title {
    margin: 0 1rem;
    font-size: 1.5rem;
    flex: 1;
}

/* Mobile-friendly styling (preserves existing rules) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .branding {
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }
}