/* =========================================================
   LINE 官方品牌圖示
   Keycloak 對非內建 provider (line) 會渲染一個通用「立方體」
   inline SVG。這裡把它藏起來, 換上 LINE 官方綠色 logo。
   按鈕 id 為 #social-line (由 alias 決定)。
   ========================================================= */
#social-line svg {
    display: none !important;
}

#social-line::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../img/line.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
