/* Footer */
.footer {
    backdrop-filter: blur(24px);
    background-color: rgba(245, 245, 245, 0.1);
    border-top: 1px solid var(--border-primary);
    padding: 60px 144px;
    margin-top: auto;
}

.footer-content {
    background-color: var(--bg-tertiary);
    padding: 60px 144px;
    margin: -60px -144px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    width: 43px;
    height: 57px;
}

.footer-logo img, .footer-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.footer-link {
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--white-100);
    text-decoration: none;
    background-color: transparent;
}

.footer-divider {
    height: 1px;
    background-color: var(--text-disabled);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-primary);
    margin: 0;
}

.footer-terms-trigger {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-terms-trigger:hover,
.footer-terms-trigger:active {
    color: var(--white-100);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.social-icon {
    display: inline-block;
    width: 28.496px;
    height: 29.912px;
    color: var(--text-primary);
}

.social-icon .icon-btn-icon {
    width: 100%;
    height: 100%;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        padding: 60px 40px;
        margin: -60px -40px;
    }
}
