/* Customizations for carls-zukunft.de */

/* Journal cover tile on homepage (between Featured and Latest Posts) */
.gh-journal-cover{
    display:block;
    margin-bottom:16px;
    border-radius:var(--border-radius-images);
    overflow:hidden;
    aspect-ratio:16/9;
}
.gh-journal-cover__img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    background:var(--color-bg);
}

/* Make /journal/ page feature image portrait-friendly (avoid forced 16/9 crop) */
.page-journal .gh-archive-page-image-wrapper{
    aspect-ratio:3/4;
}
.page-journal .gh-archive-page-feature-image{
    object-fit:contain;
    background:var(--color-bg);
}


/* Header type 2 layout fixes (restore large centered logo + tidy nav) */

.gh-header--type-2 .gh-site-logo-img,
.gh-header--type-2 .gh-site-logo-img-dark-mode{
    max-height:72px;
    width:auto;
    max-width:none;
}

/* Ensure the bottom nav is centered and has breathing room */
.gh-header--type-2 .gh-header--bottom{
    padding-top:10px;
    padding-bottom:10px;
}
.gh-header--type-2 .gh-nav-menu{
    justify-content:center;
}
