/*  UTLITIES: BORDERS
//////////////////////////////////////////////////////////////////////////////*/

@layer utilities {
    .border-top-none {
        border-top: none;
    }
    .border-top {
        border-top: var(--border);
    }
    .border-bottom {
        border-bottom: var(--border);
    }
}
