@charset "utf-8";

/* 사이트 공통 푸터 — 배경 #F2F4F7, 패딩 32×80, 섹션 간격 13px, 좌측 정렬 */

#footer.site-footer {
    width: 100%;
    box-sizing: border-box;
    background: #f2f4f7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 3.2rem clamp(1.6rem, 4vw + 1rem, 8rem);
    gap: 1.3rem;
}

.site-footer__inner {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    box-sizing: border-box;
}

/* 브랜드: 기존 로고 이미지 + 앱 이름 */
.site-footer__brand {
    margin: 0;
    padding: 0;
}

.site-footer__brand-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.site-footer__brand-link:hover .site-footer__name {
    opacity: 0.85;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 3.2rem;
    max-height: 4rem;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__name {
    font-family: Pretendard, var(--font-family-base, sans-serif);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.4;
    color: rgba(13, 28, 45, 0.8);
}

/* 면책 문구 */
.site-footer__disclaimer {
    margin: 0;
    max-width: 62.9rem;
    font-family: Pretendard, var(--font-family-base, sans-serif);
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(13, 28, 45, 0.8);
}

/* 약관 링크 */
.site-footer__policy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.site-footer__policy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0;
    border-radius: 1.2rem;
    font-family: Pretendard, var(--font-family-base, sans-serif);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6;
    font-feature-settings: 'case' on;
    color: rgba(13, 28, 45, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast, 0.2s ease);
}

.site-footer__policy a:hover {
    color: rgba(13, 28, 45, 0.72);
}

.site-footer__policy a:focus-visible {
    outline: 0.2rem solid rgba(69, 104, 255, 0.35);
    outline-offset: 0.2rem;
}

.site-footer__brand-link:focus-visible {
    outline: 0.2rem solid rgba(69, 104, 255, 0.35);
    outline-offset: 0.2rem;
}

.site-footer__policy-sep {
    width: 0.1rem;
    height: 2.4rem;
    flex-shrink: 0;
    background: rgba(13, 28, 45, 0.5);
}

/* 사업자 정보 */
.site-footer__company {
    margin: 0;
    padding: 0;
    max-width: 62.9rem;
}

.site-footer__company p {
    margin: 0;
    font-family: Pretendard, var(--font-family-base, sans-serif);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: #777777;
}

.site-footer__company p + p {
    margin-top: 0;
}

@media (max-width: 768px) {
    #footer.site-footer {
        padding: 2.4rem var(--container-padding-x-mobile, 1.2rem);
        gap: 1.2rem;
    }

    .site-footer__inner {
        gap: 1.4rem;
    }

    .site-footer__name {
        font-size: 2rem;
    }

    .site-footer__policy a {
        padding: 1rem 0;
        font-size: 1.5rem;
    }
}
