/* smsby-footer.css */
.smsby-footer {
    background: rgb(249, 249, 249);
}

.smsby-footer #copyright {
    display: flex;
    gap: 10px;
}

.smsby-footer .smsby-inner:first-child {
    border-top: 1px solid rgb(210, 210, 215);
    border-bottom: 1px solid rgb(210, 210, 215);
    padding: 40px 0 80px 0;
}

.smsby-footer .smsby-inner:first-child .wrapper {
    display: flex;
    gap: 40px 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.smsby-footer .smsby-inner:first-child .wrapper ul {
    width: 160px;
    margin: 0;
    padding: 0;
}

.smsby-footer .smsby-inner:first-child .wrapper ul li {
    list-style-type: none;
}

.smsby-footer .smsby-inner:first-child .wrapper ul li a {
    font-size: 13px;
    font-weight: 400;
    color: rgb(133, 135, 144);
    text-decoration: none;
}

.smsby-footer .smsby-inner:first-child .wrapper ul li:first-child {
    color: rgb(29, 29, 31);
    font-size: 13px;
    font-weight: 500;
}

.smsby-footer .smsby-inner:first-child .wrapper ul li:not(:last-child) {
    margin-bottom: 10px;
}

.smsby-footer .smsby-inner:first-child .wrapper .ul-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smsby-footer .smsby-inner:first-child .wrapper .ul-box .title {
    color: rgb(29, 29, 31);
    font-size: 13px;
    font-weight: 500;
}

.smsby-footer .smsby-inner:first-child .wrapper .ul-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    width: 328px;
    margin: 0;
    padding: 0;
}

.smsby-footer .smsby-inner:first-child .wrapper .ul-box ul li {
    width: 160px;
    height: 24px;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.smsby-footer .smsby-inner:first-child>p {
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 16px;
    margin: 0;
}

.smsby-footer .smsby-inner:first-child .social {
    display: flex;
    column-gap: 32px;
}

.smsby-footer .smsby-inner:first-child .social img {
    display: block;
    max-width: 100%;
    height: auto;
}

.smsby-footer .smsby-inner:last-child {
    padding: 14px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgb(133, 135, 144);
}

/* Адаптив */
@media (max-width: 991px) {
    .smsby-footer .smsby-inner:first-child {
        padding: 24px 0 40px 0;
    }

    .smsby-footer .smsby-inner:first-child .wrapper {
        gap: 24px 16px;
        margin-bottom: 24px;
    }

    .smsby-footer .smsby-inner:first-child .wrapper ul,
    .smsby-footer .smsby-inner:first-child .wrapper .ul-box ul li {
        width: calc(50% - 8px);
    }

    .smsby-footer .smsby-inner:first-child .wrapper .ul-box ul {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .smsby-footer #copyright {
        flex-direction: column;
        gap: 4px;
    }

    .smsby-footer .smsby-inner:first-child .wrapper ul,
    .smsby-footer .smsby-inner:first-child .wrapper .ul-box ul li {
        width: 100%;
    }

    .smsby-footer .smsby-inner:first-child .social {
        column-gap: 20px;
        flex-wrap: wrap;
        row-gap: 12px;
    }
}

/* Align footer content with HybridMag container */
.smsby-footer .smsby-inner {
    width: 1200px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}