@use "../../styles/variables"; .wrapper { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: variables.$greyWhite; border-radius: variables.$radiusMd; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; &:hover { background: #eef2f7; border-color: variables.$border; } } .checkbox { width: 20px; height: 20px; margin-top: 2px; cursor: pointer; accent-color: variables.$primary; } .text { font-size: 14px; line-height: 1.5; color: variables.$skyBlue; font-weight: variables.$medium; }