/**
 * =========================================================
 * 파일명 : footer.css
 * 위치 : /www/assets/css/layout
 * ---------------------------------------------------------
 * 목적
 * - 공통 Footer 스타일
 *
 * 담당 기능
 * - Footer
 * - Copyright
 * =========================================================
 */

/* =========================
   Footer
========================= */

.footer{

    padding:40px 20px;

    background:var(--color-background);

    border-top:1px solid var(--color-border);

}

/* =========================
   Footer Inner
========================= */

.footer-inner{

    max-width:var(--container-width);

    margin:0 auto;

    text-align:center;

}

/* =========================
   Footer Text
========================= */

.footer p{

    font-size:14px;

    line-height:1.7;

    color:var(--color-text-secondary);

}

.footer small{

    display:block;

    margin-top:12px;

    font-size:13px;

    color:var(--color-text-secondary);

}