/* announcement bar
--------------------------------------------------------------------------
*/

.announcement {
    background: #f5f5f5;
    color: #333;
}

.announcement__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
    row-gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.announcement__text {
    text-wrap: balance;
}

@media only screen and (min-width: 780px) {
    .announcement__inner {
        flex-direction: row;
        padding: 14px 40px;
    }
}

.announcement a {
    font-weight: 600;
    text-decoration-line: none;
    background-color: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    line-height: 1;
    display: inline-block;
}

.announcement a:hover {
	opacity: 0.85;
}
