
.dst-lf-section{
    width:100%;
    background:#1F262A;
    border-top:1px solid #394147;
    box-sizing:border-box;
    padding:22px 24px;
}
.dst-lf-inner{
    width:min(1180px,100%);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.dst-lf-copy{
    color:#E9E9E9;
    font:400 13px/1.4 Arial,sans-serif;
    white-space:nowrap;
}
.dst-lf-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:20px;
    flex-wrap:wrap;
}
.dst-lf-nav a{
    color:#E9E9E9;
    text-decoration:none;
    font:400 13px/1.4 Arial,sans-serif;
    transition:opacity .2s ease;
}
.dst-lf-nav a:hover{
    opacity:.75;
}
@media (max-width:900px){
    .dst-lf-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }
    .dst-lf-copy{
        white-space:normal;
    }
    .dst-lf-nav{
        justify-content:flex-start;
        gap:14px 18px;
    }
}
@media (max-width:520px){
    .dst-lf-section{
        padding:20px 16px;
    }
    .dst-lf-nav{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        width:100%;
        gap:10px 16px;
    }
}
