@import url("/shared/components/font.css");

.footer-container {
    margin-top: 40px;
    padding: 34px clamp(24px, 4vw, 56px) 20px;
    background:
        linear-gradient(135deg, rgba(15, 33, 82, 0.98) 0%, rgba(19, 57, 143, 0.96) 58%, rgba(49, 126, 226, 0.96) 100%);
    color: #eef4ff;
    font-family: "RIDIBatang", serif;
}

.footer-content {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 1.8fr) minmax(190px, 0.8fr) minmax(260px, 1fr) minmax(230px, 0.9fr);
    gap: clamp(30px, 4.2vw, 70px);
    align-items: start;
}

.footer-section h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-kicker {
    margin: 0 0 6px;
    color: #9db8ff;
    font-family: "EliceDigitalCodingverH_Regular", monospace;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.footer-section p {
    margin: 6px 0;
    color: rgba(238, 244, 255, 0.82);
    line-height: 1.6;
    font-size: 0.94rem;
}

.footer-brand-section p {
    max-width: 520px;
}

.footer-section a {
    color: inherit;
    text-decoration: none;
}

.footer-section a[href^="mailto:"],
.footer-section a[href^="tel:"],
.footer-section a[href^="/shared/components/footer/footer.css"] {
    font-family: "EliceDigitalCodingverH_Regular", monospace;
    letter-spacing: 0.03em;
}

.footer-section a:hover,
.footer-section a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1360px;
    margin: 22px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(238, 244, 255, 0.16);
    color: rgba(238, 244, 255, 0.66);
    font-size: 0.88rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .footer-container {
        padding: 38px 18px 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
