/* boram-sangjo 전용 FontAwesome 서브셋. 전체 아이콘셋(150KB, 1000+ 아이콘) 대신
   실제 쓰는 3개(fa-phone, fa-times, fa-arrow-up)만 포함한 976B 폰트.
   공용 /static-adm/vendor/fontawesome/ 는 다른 테마도 쓰므로 절대 수정하지 않고
   이 테마 전용 경로에 별도로 둔다. */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/fa-solid-boram-subset.woff2) format('woff2');
}

.fa,
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-phone:before { content: "\f095"; }
.fa-times:before { content: "\f00d"; }
.fa-arrow-up:before { content: "\f062"; }
