/* BASIC css start */
/* ¸ð¹ÙÀÏ¿¡¼­¸¸ ¿©¹é Ãß°¡ */
@media (max-width: 768px) {
    .footer_basicgagu {
        margin-top: 50px;
    }
}


.footer_basicgagu {
    background: #57320a;
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
}

/* »ó´Ü */
.ft_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

/* ·Î°í */
.ft_logo {
    display: flex;
    align-items: center;
    transform: translateY(-10px);
}

.ft_logo img {
    width: 160px;
}

/* °øÅë ÄÃ·³ */
.ft_col {
    min-width: 180px;
}

/* Å¸ÀÌÆ² */
.ft_col .tit {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* °í°´¼¾ÅÍ ¹øÈ£ */
.ft_col .num {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ÅØ½ºÆ® */
.ft_col .txt {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* °­Á¶ ÅØ½ºÆ® */
.ft_col .strong {
    font-weight: 600;
}

/* ¸µÅ© */
.ft_col a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #fff;
    opacity: 0.85;
    transition: 0.3s;
}

.ft_col a:hover {
    opacity: 1;
}

/* SNS */
.ft_sns {
    margin-top: 25px;
    transform: translateY(5px); /* »ìÂ¦ ¾Æ·¡ */
    display: flex;
    align-items: center;
    gap: 12px;
}

.ft_sns img {
    height: 30px;
    opacity: 0.85;
    transition: 0.3s;
}

.ft_sns img:hover {
    opacity: 1;
}

/* ÇÏ´Ü */
.ft_bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.ft_bottom_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* »ç¾÷ÀÚ */
.ft_info {
    font-size: 12px;
    line-height: 1.8;
    opacity: 0.7;
    word-break: keep-all;
}

/* Ä«ÇÇ¶óÀÌÆ® */
.ft_copy {
    position: absolute;
    right: 20px;
    bottom: 40px;
    font-size: 12px;
    opacity: 0.6;
}

/* ===== ¸ð¹ÙÀÏ ===== */
@media (max-width: 768px) {

    .ft_inner {
        flex-direction: column; /* ¼¼·Î Á¤·Ä */
        gap: 30px;
        padding: 60px 20px;
    }

    .ft_logo {
        transform: none;
        justify-content: flex-start;
    }

    .ft_logo img {
        width: 140px;
    }

    .ft_col {
        min-width: auto;
        text-align: left;
    }

    .ft_col .num {
        font-size: 22px;
    }

    .ft_col .txt,
    .ft_col a {
        font-size: 13px;
    }

    /* SNS °¡¿îµ¥ Á¤·Ä */
    .ft_sns {
        justify-content: center;
        margin-top: 20px;
        transform: none;
    }

    .ft_sns img {
        height: 26px;
    }

    /* ÇÏ´Ü */
    .ft_bottom_inner {
        padding: 30px 20px;
        text-align: center;
    }

    .ft_info {
        font-size: 11px;
        line-height: 1.6;
    }

    .ft_copy {
        position: static;
        margin-top: 15px;
    }
}

/* BASIC css end */

