/* =======================
   3-COLUMN FOOTER CSS
   ======================= */

.sf-footer{
    --sf-bg: #0b1220;
    --sf-text: rgba(255,255,255,0.78);
    --sf-title: #ffffff;
    --sf-link: rgba(255,255,255,0.82);
    --sf-link-hover: #ffffff;
    --sf-border: rgba(255,255,255,0.14);

    background: var(--sf-bg);
    color: var(--sf-text);
}

.sf-footer__top{
    padding: 70px 0 38px;
}

.sf-footer__logo img{
    max-height: 56px;
    width: auto;
}

.sf-footer__text{
    margin: 16px 0 0;
    line-height: 1.75;
    max-width: 560px;
    color: var(--sf-text);
}

.sf-footer__title{
    margin: 6px 0 14px;
    font-size: 16px;
    color: var(--sf-title);
    letter-spacing: .2px;
}

.sf-footer__links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.sf-footer__links a{
    color: var(--sf-link);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.2s ease;
}

.sf-footer__links a:hover{
    color: var(--sf-link-hover);
    transform: translateX(2px);
}

.sf-footer__more{
    display: inline-flex;
    margin-top: 14px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.35);
    padding-bottom: 2px;
}

.sf-footer__more:hover{
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.75);
}

.sf-footer__line{
    margin-top: 34px;
    height: 1px;
    background: var(--sf-border);
}

.sf-footer__bottom{
    padding: 16px 0;
}

.sf-footer__bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sf-footer__copy,
.sf-footer__dev{
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
}

.sf-footer__dev a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.35);
}

.sf-footer__dev a:hover{
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 575.98px){
    .sf-footer__top{
        padding: 55px 0 28px;
    }
    .sf-footer__bottom-inner{
        flex-direction: column;
        align-items: flex-start;
    }
}
