.ads-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #c8d6e5;
    background: #071d33;
}

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

.ads-footer .site-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.ads-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 2fr);
    gap: 84px;
    padding: 54px 0 46px;
}

.ads-footer-brand {
    min-width: 0;
    max-width: 390px;
}

.ads-footer-brand img {
    display: block;
    width: 215px;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px;
}

.ads-footer-brand p {
    max-width: 370px;
    margin: 0;
    color: #c4d3e3;
    font-size: 15px;
    line-height: 1.7;
}

.ads-footer-brand > span {
    display: block;
    margin-top: 17px;
    color: #65b8fa;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ads-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.ads-footer-columns > div {
    min-width: 0;
}

.ads-footer-columns h4 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.ads-footer-columns h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 31px;
    height: 2px;
    border-radius: 10px;
    background: #2196f3;
}

.ads-footer-columns a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 12px;
    color: #bfd0e2;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.ads-footer-columns a:hover,
.ads-footer-columns a:focus-visible {
    color: #48adff;
    transform: translateX(2px);
}

.ads-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #829bb3;
    font-size: 12px;
    line-height: 1.4;
}

.ads-footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ads-footer-bottom i {
    display: block;
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #1684f5;
}

@media (max-width: 900px) {
    .ads-footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 44px 0 38px;
    }

    .ads-footer-brand {
        max-width: 520px;
    }

    .ads-footer-columns {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .ads-footer {
        background: #071d33;
    }

    .ads-footer .site-container {
        width: calc(100% - 32px);
    }

    .ads-footer-main {
        display: block;
        padding: 38px 0 30px;
    }

    .ads-footer-brand {
        max-width: 100%;
    }

    .ads-footer-brand img {
        width: 178px;
        margin-bottom: 18px;
    }

    .ads-footer-brand p {
        max-width: 340px;
        color: #d0dbe7;
        font-size: 14px;
        line-height: 1.65;
    }

    .ads-footer-brand > span {
        margin-top: 14px;
        font-size: 10px;
    }

    .ads-footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
        margin-top: 36px;
    }

    .ads-footer-columns h4 {
        margin-bottom: 17px;
        font-size: 15px;
    }

    .ads-footer-columns a {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .ads-footer-bottom {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        padding: 20px 0 24px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .ads-footer-columns {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ads-footer-bottom > div {
        flex-wrap: wrap;
    }
}
