@charset "utf-8";

/* 푸터 — 마지막에 보는 화면이라 정보가 한눈에 잡혀야 한다 */
.ft {
    background: #06131f;
    color: rgba(255, 255, 255, .6);
}

.ft-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 40px 40px;
}

/* 위쪽 — 로고 · 메뉴 · 버튼 */
.ft-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
    gap: 50px;
    align-items: start;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft-logo {
    display: block;
    height: 46px;
    width: auto;
}

.ft-slogan {
    margin: 18px 0 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -.03em;
    color: #fff;
    word-break: keep-all;
}

.ft-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-top: 8px;
}

.ft-nav a {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: color .2s;
}

.ft-nav a:hover { color: var(--point-mint); }

.ft-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}

.ft-btn:hover { border-color: var(--point-mint); color: var(--point-mint); }

.ft-btn-primary {
    border-color: var(--point-mint);
    background: var(--point-mint);
    color: #05221f;
}

.ft-btn-primary:hover { background: var(--point-mint-light); border-color: var(--point-mint-light); color: #05221f; }

/* 지점 */
.ft-branches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft-branch {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
}

.ft-branch-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.02rem;
    font-weight: 800;
    color: #fff;
}

/* 본점 표시 */
.ft-branch-name i {
    font-style: normal;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(0, 204, 198, .18);
    font-size: .7rem;
    font-weight: 800;
    color: var(--point-mint);
}

.ft-branch a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.ft-branch a:hover { color: var(--point-mint); }

/* 아래쪽 */
.ft-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 30px;
}

.ft-biz {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    margin: 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .45);
}

.ft-copy {
    margin: 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .3);
}

@media (max-width: 1080px) {
    .ft-inner { padding: 54px 24px 34px; }
    .ft-top { grid-template-columns: 1fr; gap: 30px; }
    .ft-cta { flex-direction: row; }
}

@media (max-width: 640px) {
    .ft-inner { padding: 44px 16px 30px; }
    .ft-branches { gap: 22px; padding: 30px 0; }
    .ft-cta { flex-direction: column; }
    .ft-btn { width: 100%; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
}
