/* ==========================================================
   Masuren.digital
   header.css
   Version 1.0

   Gesamtlayout des Seitenkopfes
========================================================== */

#site-header {

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    grid-template-rows:
        auto
        auto
        auto;

    align-items: start;

    width: 100%;

    padding: 12px 20px;

    box-sizing: border-box;

}


/* ==========================================================
   Linke Spalte
========================================================== */

#header-logo {

    grid-column: 1;
    grid-row: 1;

}


/* ==========================================================
   Mittlere Spalte
========================================================== */

#header-module {

    grid-column: 2;
    grid-row: 1;

    text-align: center;

}


/* ==========================================================
   Rechte Spalte
========================================================== */

#header-language {

    grid-column: 3;
    grid-row: 1;

    justify-self: end;

}


#header-time {

    grid-column: 3;
    grid-row: 2;

    justify-self: end;

    margin-top: 6px;

}


#header-timeline {

    grid-column: 3;
    grid-row: 3;

    justify-self: end;

    margin-top: 6px;

}


/* ==========================================================
   Navigation
========================================================== */

#header-navigation {

    width: 100%;

}