/* 형광펜 효과 */
.donation-account::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    width: 0;
    height: 60%;
    background-color: color-mix(in srgb, var(--global-palette-media-accent) 10%, transparent);
    z-index: -1;
    border-radius: 2px;
}

/* 애니메이션 활성화 시 */
.donation-account.highlight-active::before {
    animation: account-highlight 1s ease-out forwards;
}

@keyframes account-highlight {
    to {
        width: 9.8em;
    }
}

