@media screen and (min-width: 640px) {
    header .wp-block-navigation {
        flex-direction: row;
        align-items: center;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (min-width: 960px) {
    header .wp-block-navigation {
        justify-content: end;
    }
}

header .wp-block-image img {
    max-height: 64px;
}

@media screen and (min-width: 960px) {
    .header-front-page .floating-logo {
        position: relative;
        z-index: 1000;

        figure {
            display: flex;
            justify-content: center;
            align-items: center;

            position: absolute;
            width: 300px;
            padding: var(--wp--preset--spacing--40);
            left: 0;
            top: -1.5rem;
            background-color: var(--wp--preset--color--base);
            border-radius: 100%;
        }
    }
}