.announcement {
    background: #096df2;
}

.announcement__wrapper {
    display: flex;
    padding: 0.875rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 1.3125rem;
    align-self: stretch;
    color: white;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 1.3125rem */
    letter-spacing: -0.00875rem;
}

.announcement__category {
    display: flex;
    padding: 0rem 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 1.25rem;
    background: #0a59c2;
}

.announcement__link {
    position: relative;
}

.announcement__link:after {
    position: absolute;
    display: none;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 6L14 8.5M14 8.5L11.5 11M14 8.5H2' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 14px;
    height: 14px;
    /* Medium Screen */
}

@media (min-width: 768px) {
    .announcement__link:after {
        display: block;
    }
}