.custom-footer {
    background: #f2f2f2;
    padding: 40px 0;
}

.footer-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.footer-logo {
    display: block;
}

.footer-txts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: #444;
}

.footer-t01 {
    font-weight: 500;
}

.footer-t02 {
    font-size: 13px;
    color: #888;
}



/* -----------------
   모바일 반응형
------------------- */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .footer-logo {

    }
    .footer-txts {
        font-size: 12px;
        padding: 0px 30px 0px 30px;
        align-items: center;
        gap: 20px
    }
}