.footer {
    width: 100%;
    background: #191919;
    color: #999999;
}

.footer-inner {
    width: calc(100% - 120px);
    max-width: 1500px;
    min-height: 345px;
    margin: 0 auto;
    padding: 80px 0 70px;
    display: flex;
    align-items: flex-start;
    gap: 120px;
    box-sizing: border-box;
}

.footer-logo {
    flex-shrink: 0;
    padding-top: 0;
    margin-top: -9px;
}

.footer-logo a {
    display: block;
}

.footer-logo img {
    display: block;
    width: 215px;
    height: auto;
}

/* 검은색 로고밖에 없다면 사용 */
.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.72;
}

.footer-content {
    flex: 1;
    min-width: 0;
}

.footer-menu {
    display: flex;
    align-items: center;
    margin-bottom: 31px;
}

.footer-menu a {
    position: relative;
    padding: 0 36px;
    color: #f1f1f1;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:first-child {
    padding-left: 0;
}

.footer-menu a:last-child {
    padding-right: 0;
}

.footer-menu a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 16px;
    background: #393939;
    transform: translateY(-50%);
}

.footer-menu a:hover {
    color: #9ac8ff;
}

.footer-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #929292;
}

.footer-info p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.footer-info span {
    position: relative;
    margin-right: 18px;
    padding-right: 19px;
    white-space: nowrap;
}

.footer-info span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 13px;
    background: #777777;
    transform: translateY(-50%);
}

.footer-copyright {
    margin: 25px 0 0;
    color: #8c8c8c;
    font-size: 16px;
    font-weight: 400;
}

/* 태블릿 */
@media (max-width: 1100px) {
    .footer-inner {
        width: calc(100% - 40px);
        gap: 70px;
    }

    .footer-menu {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .footer-menu a {
        padding: 0 22px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .footer-inner {
        width: calc(100% - 40px);
        min-height: auto;
        padding: 50px 0;
        display: block;
    }

    .footer-logo {
        margin-bottom: 35px;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 24px;
        margin-bottom: 30px;
    }

    .footer-menu a {
        padding: 0;
        font-size: 16px;
    }

    .footer-menu a::after {
        display: none;
    }

    .footer-info {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-info p {
        display: block;
    }

    .footer-info span {
        display: block;
        margin: 0;
        padding: 0;
    }

    .footer-info span::after {
        display: none;
    }

    .footer-copyright {
        margin-top: 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        grid-template-columns: 1fr;
    }
}
