/* Header / logo added for monuments index page */
.site-header {
    padding: 12px 16px;
    background: #8B0000; /* dark red */
    color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.18);
}
.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.site-header__titles {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
}
.site-header__titles h1,
.site-header__titles h2,
.site-header__titles h3 {
    margin: 0;
    line-height: 1.05;
    color: inherit;
}
.site-header__titles h1 {
    font-size: 1.5rem;
    font-weight: 700;

}
.site-header__titles h2 {
    font-size: 1.3rem;
    font-weight: 700;

}
.site-header__titles h3 {
    font-size: 1.1rem;
    font-weight: 700;

}
.site-header__home { display: inline-block; }
.site-header__logo {
    height: 56px; /* adjust as needed */
    width: auto;
    display: block;
}

.site-header a { color: inherit; }
.site-header__home { display: inline-block; }

@media (max-width: 600px) {
    .site-header__logo { height: 44px; }
    .site-header__inner { flex-direction: column; align-items: flex-start; }
    .site-header__titles { margin-left: 0; margin-top: 8px; }
}