/* Link zur Startseite */
.homelink {
    text-align: center;
    margin-top: 1em;
}

.homelink a {
    color: rgb(64, 64, 64);
}

/* Navigation */
.custom-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 10px 0;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.custom-navi a {
    text-decoration: none;
    color: inherit;
    padding: 0 10px;
    position: relative;
}

.custom-navi a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #000;
}

@media (prefers-color-scheme: dark) {
    .custom-navi {
        background-color: #333333;
    }

    .custom-navi a, .custom-navi a:not(:last-child)::after {
        color: #fff;
    }
}

/* Artikelvorschau */
.post-preview {
    padding-bottom: 70px;
    margin-bottom: 1em;
}

.post-preview h2 {
    font-size: 100%;
}

.navbar {
    display: none;
}

.intro-header {
    margin-top: 20px;
    margin-bottom: 40px;
}

.intro-header .page-heading h1 {
    font-size: 45px;
}

.infobox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #eff6ff;
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.infobox-icon {
    font-size: 1.25rem;
    color: #2563eb;
    line-height: 1.5;
    flex-shrink: 0;
}

.infobox-content {
    font-size: 0.9rem;
    color: #1e3a5f;
    line-height: 1.6;
}

.infobox-content p {
    margin: 0;
}