.jr-footer-main{
    grid-template-columns:minmax(260px,1.35fr) minmax(180px,.72fr) minmax(320px,1.35fr);
    gap:54px;
    align-items:start;
}

.jr-footer-brand{
    max-width:390px;
}

.jr-footer-logo{
    display:inline-flex;
    align-items:center;
    margin-bottom:14px;
}

.jr-footer-logo img{
    display:block;
    width:104px;
    height:88px;
    object-fit:contain;
}

.jr-footer-description{
    max-width:360px;
    margin:0 0 17px;
    color:#59645e;
    font-size:13px;
    line-height:1.7;
}

.jr-footer-brand-social{
    display:flex;
    align-items:center;
    gap:9px;
}

.jr-footer-brand-social a{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    transition:transform .2s ease,background-color .2s ease;
}

.jr-footer-brand-social a:hover{
    transform:translateY(-2px);
    background:#0d5132;
}

.jr-footer-brand-social svg{
    width:17px;
    height:17px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.jr-footer-brand-social a:first-child svg{
    fill:currentColor;
    stroke:none;
}

@media(max-width:900px){
    .jr-footer-main{
        grid-template-columns:1.2fr .8fr;
        gap:34px;
    }

    .jr-footer-newsletter{
        grid-column:1/-1;
    }
}

@media(max-width:620px){
    .jr-footer-main{
        grid-template-columns:1fr;
        gap:28px;
    }

    .jr-footer-brand{
        max-width:none;
        text-align:center;
    }

    .jr-footer-logo{
        justify-content:center;
    }

    .jr-footer-description{
        margin-left:auto;
        margin-right:auto;
    }

    .jr-footer-brand-social{
        justify-content:center;
    }

    .jr-footer-newsletter{
        grid-column:auto;
    }
}
