/*footer*/
footer {
    position: relative;
    width: 100%;
    background: #ffffff;
    /* padding: 40px 0; */
    height: 300px;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

footer .footer {
    position: relative;
    margin: 0 auto;
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* 왼쪽 섹션 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon-img {
    height: 20px;
    object-fit: contain;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.university-name {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.platform-name02 {
    color: #5A5E67;
    font-size: 20px;
    font-weight: 700;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.footer-address p {
    color: #5A5E67;
    font-size: 17px;
    white-space: nowrap;
    font-weight: 500;
}

.contact-spacer {
    margin-left: 20px;
}

.footer-copyright {
    color: #5A5E67;
    font-size: 15px;
}

/* 오른쪽 섹션 */
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}

.privacy-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.privacy-link:hover {
    color: #1C57EF;
}

@media screen and (max-width: 1019px) {   
    .footer-left {
        gap: 15px;
    }
    
    .footer-logo-section {
        gap: 10px;
    }
    
    .platform-name02 {
        font-size: 20px;
    }
    
    /* .footer-address p {
        font-size: 13px;
    } */
    
    .contact-spacer {
        margin-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .footer-left {
        gap: 12px;
    }
    
    /* .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    } */
    
    .footer-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    /* .footer-address p {
        font-size: 12px;
        white-space: normal;
    } */
    
    .contact-spacer {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* .footer-right {
        justify-content: flex-start;
        margin-top: 15px;
    } */
}

@media screen and (max-width: 576px) {
    .footer-left {
        gap: 10px;
    }
    
    .footer-logo-section {
        gap: 6px;
    }
    
    .footer-address {
        font-size: 14px;
    }
    .footer-copyright {
        font-size: 12px;
    }
    .contact-spacer {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    .footer-right a {
        margin-top: 10px;
        font-size: 12px;
    }
}