/**
 * Header
 *
 * Utility strip, masthead, logo and animated announcement ticker.
 */
.top-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 28px;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--navy-dark);
    border-bottom: 2px solid #ffffff;
    font-family: "Courier New", monospace;
    font-size: 12px;
}

.blink {
    color: #fff38a;
    font-weight: 700;
    animation: easyseo-blink 1.15s steps(2, start) infinite;
}

@keyframes easyseo-blink {
    50% {
        opacity: 0.2;
    }
}

.site-header {
    display: grid;
    grid-template-columns: 120px 1fr 160px;
    align-items: center;
    gap: 15px;
    min-height: 145px;
    padding: 14px 18px;
    color: #ffffff;
    background:
        linear-gradient(rgba(13, 37, 69, 0.76), rgba(13, 37, 69, 0.86)),
        repeating-linear-gradient(45deg, #4776a8 0, #4776a8 12px, #396995 12px, #396995 24px);
    border-bottom: 4px double #ffffff;
}

.crest {
    display: grid;
    place-items: center;
    width: 105px;
    height: 112px;
    margin: auto;
    padding: 10px;
    color: var(--navy-dark);
    background: #f5d96b;
    border: 5px double #ffffff;
    border-radius: 48% 48% 40% 40%;
    box-shadow: inset 0 0 0 3px #9f2b25;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.custom-logo {
    max-width: 110px;
    height: auto;
}

.site-title {
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1;
    text-shadow: 2px 2px 0 #102947;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.site-description {
    margin: 0;
    color: #fff9c8;
    font-family: "Courier New", monospace;
    font-size: 15px;
    letter-spacing: 1px;
}

.header-box {
    padding: 8px;
    color: #111111;
    background: #fffde2;
    border: 3px outset #ffffff;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
}

.header-box strong {
    display: block;
    color: var(--danger);
    font-size: 14px;
}

.ticker {
    padding: 5px 0;
    color: #6b0000;
    background: var(--yellow);
    border-top: 1px solid #907b00;
    border-bottom: 1px solid #907b00;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Courier New", monospace;
    font-weight: 700;
}

.ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: easyseo-ticker 20s linear infinite;
}

@keyframes easyseo-ticker {
    to {
        transform: translateX(-100%);
    }
}
