.oc-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    margin: 0 0 1.5em;
    padding: 0.75em 1em;
    border-left: 4px solid #d9822b;
    background: #fff8ec;
    color: #4a3a1f;
    font-size: 0.95em;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color 120ms ease-in-out;
}

.oc-notice .oc-notice__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-top: 2px;
    color: #d9822b;
}

.oc-notice__body {
    flex: 1 1 auto;
    min-width: 0;
}

a.oc-notice:hover,
a.oc-notice:focus {
    background: #ffe9c8;
    text-decoration: none;
}

a.oc-notice:focus-visible {
    outline: 2px solid #d9822b;
    outline-offset: 2px;
}

.oc-notice :first-child { margin-top: 0; }
.oc-notice :last-child  { margin-bottom: 0; }
