/* Announcement Bar */
.announcement-bar {
    background: var(--accent-color);
    color: var(--dark-text);
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    position: static;
    /* position: sticky; */
    /* top: calc(var(--header-height) - 1px); */
    /* Below header */
    z-index: 999;
}

.announcement-bar p{
    margin-bottom: 0;
    line-height: 1.2;
}

.announcement{
    overflow-y: scroll;
    text-align: start;
    height: 0px;
    width: 100%;
    padding-top: 0;
    transition: height 0.5s ease, padding-top 0.5s ease;
}

.announcement.active{
    padding-top: 20px;
    height: 70vh;
}

.announcement-bar .read-more {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
    cursor: pointer;
}

.announcement p{
    margin-bottom: 25px;
}

.announcement-bar .read-more:hover {
    text-decoration: underline;
}