.header.default {
    display: flex;
    align-items: left;
    padding: 12px;
    border-radius: var(--s-border);
    background-color: var(--primary-tan);
    position: sticky;
    top: 3px;
    z-index: 10;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}

.header.home-link {
    text-decoration-line: none;
}

.header.home-link:hover .header.wordmark-span {
    background-color: #3F603F;
}

.header.home-link:hover .header.logo {
    background-color: #3F603F;
}

.header.home-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header.logo {
    width: 48px;
    height: 48px;
    border-radius: var(--max-border);
    background-color: var(--orange);
    transition: background-color 0.25s ease;
}

.header.wordmark {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
}

.header.wordmark-span {
    background-color: var(--orange);
    color: var(--primary-white);
    padding: 0px 3px;
    transition: background-color 0.25s ease;
}

.pill-bar.default {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 24px;
    margin: 0px;
    overflow: auto;
    white-space: nowrap;
    border-top-left-radius: var(--s-border);
    border-top-right-radius: var(--s-border);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--secondary-tan);
    color: var(--primary-black);
    font-weight: 600;
    border-bottom: 1px solid var(--green);
}

.pill {
    list-style: none;
    display: flex;
    align-items: center;
}