.site-footer,
.site-footer *{box-sizing:border-box;}

.site-footer{
    margin-top:90px;
    color:#d7deea;
    background:#e2d8ce;
    font-family:"PingFang SC","Microsoft YaHei",Arial,sans-serif;
}

.site-footer-inner{
    width:min(1320px,88%);
    display:grid;
    grid-template-columns:1.25fr .9fr 1fr;
    gap:90px;
    margin:0 auto;
    padding:76px 0 62px;
}

.footer-logo{
    display:inline-flex;
    align-items:center;
    gap:13px;
    color:#d7a329;
    font-family:Georgia,"Times New Roman",serif;
    font-size:27px;
    font-weight:700;
    text-decoration:none;
}

.footer-logo-mark{
    width:48px;
    height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#24418e;
    background:#fff;
    border-radius:11px;
    font-family:"PingFang SC","Microsoft YaHei",Arial,sans-serif;
    font-size:22px;
    font-weight:700;
}

.footer-description{
    max-width:430px;
    margin-top:25px;
    color:#17233d;
    font-size:16px;
    line-height:1.9;
}

.footer-quick-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.footer-quick-buttons a{
    min-width:48px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    color:#cbd4e2;
    background:#334053;
    border:1px solid rgba(255,255,255,.05);
    border-radius:22px;
    font-size:13px;
    text-decoration:none;
    white-space:nowrap;
    transition:.25s;
}

.footer-quick-buttons a:hover{
    color:#fff;
    background:#c69736;
    transform:translateY(-3px);
}

.footer-column h3{
    margin-bottom:26px;
    color:#d7a329;
    font-size:20px;
    font-weight:600;
}

.footer-column>p{
    margin:0 0 17px;
    color:#334053;
    font-size:15px;
    line-height:1.7;
}

.footer-contact p span{
    display:block;
    margin-bottom:5px;
    color:#334053;
    font-size:14px;
}

.footer-contact a{
    color:#334053;
    text-decoration:none;
}

.footer-contact a:hover{color:#c69736;}

.footer-career-link{
    min-width:170px;
    height:47px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:18px;
    padding:0 20px;
    color:#fff!important;
    background:#c69736;
    border-radius:25px;
    font-size:15px;
    font-weight:500;
    transition:.25s;
}

.footer-career-link:hover{
    background:#b1842d;
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.footer-bottom{
    width:min(1320px,88%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin:0 auto;
    padding:25px 0 31px;
    color:#7f8a9c;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:13px;
}

.footer-bottom p{margin:0;}
.footer-legal{display:flex;gap:25px;white-space:nowrap;}

@media(max-width:950px){
    .site-footer-inner{grid-template-columns:1fr 1fr;gap:55px;}
    .footer-brand{grid-column:1/-1;}
}

@media(max-width:650px){
    .site-footer{margin-top:60px;}
    .site-footer-inner{width:calc(100% - 40px);grid-template-columns:1fr;gap:42px;padding:55px 0 42px;}
    .footer-brand{grid-column:auto;}
    .footer-logo{font-size:23px;}
    .footer-description{font-size:14px;}
    .footer-column h3{margin-bottom:20px;}
    .footer-bottom{width:calc(100% - 40px);flex-direction:column;align-items:flex-start;gap:14px;}
    .footer-legal{flex-wrap:wrap;gap:12px 20px;}
}