.wrapper-some {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    margin-top: 2vh;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 0;
}

.spacer {
    height: 12px;
    width: 100%;
    display: block;
    flex-shrink: 0;
}


.footer_links_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 15px;
    gap: 20px;
    box-sizing: border-box;
}

.footer_links_row a {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-align: center;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer_links_row a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer_links_row .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.footer_copyright {
    color: #FFFFFF;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 15px 0 5px;
    margin: 0;
    opacity: 0.8;
    width: 100%;
}