/* Announcement Bar */
.announcement-bar {
    background-color: var(--jd-teal);
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    /* Above header */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 5px;
}

.announcement-bar a:hover {
    color: var(--jd-light);
}

/* Adjust Site Header for Announcement Bar */
.site-header {
    top: 30px;
    /* Push down by announcement bar height */
}

/* Adjust Body Padding */
body {
    padding-top: calc(var(--header-height) + 30px);
}