/* AKHBARONA SITEWIDE MOBILE FOOTER V1 START */

.mf-footer,
.mf-footer *,
.mf-footer *::before,
.mf-footer *::after {
    box-sizing: border-box;
}

.mf-footer {
    --mf-main: #223d5a;
    --mf-deep: #182d44;
    --mf-text: #dbe4ed;
    --mf-muted: #aebdcb;
    --mf-line: rgb(255 255 255 / 15%);
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 24px auto 0;
    overflow: hidden;
    color: var(--mf-text);
    border-top: 1px solid #71869a;
    background: var(--mf-main);
    direction: rtl;
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.mf-footer__inner {
    width: 100%;
    padding: 0 16px;
}

.mf-footer__masthead {
    display: flex;
    min-height: 80px;
    border-bottom: 1px solid var(--mf-line);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mf-footer__brand {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    flex: 0 1 auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mf-footer__brand img {
    display: block;
    width: 114px;
    height: auto;
    max-width: 100%;
}

.mf-footer__social {
    display: flex;
    min-width: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    list-style: none;
}

.mf-footer__social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mf-footer__social svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.mf-footer__block {
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid var(--mf-line);
}

.mf-footer__block h2 {
    margin: 0 0 15px;
    color: #fff;
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    text-align: right;
}

.mf-footer__links {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    list-style: none;
}

.mf-footer__links li {
    min-width: 0;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.mf-footer__links a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    padding: 8px 0;
    color: #d4dee7;
    align-items: center;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.55;
    text-align: right;
    text-decoration: none;
    overflow-wrap: anywhere;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mf-footer__links--about a {
    color: #e1e8ef;
}

.mf-footer__apps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 7px;
    list-style: none;
}

.mf-footer__apps a {
    display: grid;
    width: 100%;
    min-height: 62px;
    padding: 4px;
    border: 1px solid rgb(255 255 255 / 16%);
    background: rgb(10 25 39 / 20%);
    place-items: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mf-footer__apps img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 108px;
}

.mf-footer__bottom {
    padding: 16px;
    color: var(--mf-muted);
    background: var(--mf-deep);
    text-align: center;
}

.mf-footer__legal {
    display: flex;
    margin: 0 0 11px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.mf-footer__legal li {
    display: flex;
    align-items: center;
}

.mf-footer__legal li + li::before {
    width: 1px;
    height: 13px;
    margin: 0 10px;
    background: rgb(255 255 255 / 24%);
    content: "";
}

.mf-footer__legal a {
    display: inline-flex;
    min-height: 32px;
    color: #d0dbe5;
    align-items: center;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.mf-footer__copyright {
    margin: 0;
    color: var(--mf-muted);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.75;
}

.mf-footer a:focus-visible {
    outline: 3px solid #9fb6ca;
    outline-offset: 2px;
}

@media (max-width: 350px) {
    .mf-footer__inner {
        padding-inline: 12px;
    }

    .mf-footer__masthead {
        min-height: 76px;
        gap: 8px;
    }

    .mf-footer__brand img {
        width: 100px;
    }

    .mf-footer__social {
        gap: 5px;
    }

    .mf-footer__social a {
        width: 32px;
        height: 32px;
    }

    .mf-footer__social svg {
        width: 14px;
        height: 14px;
    }

    .mf-footer__links {
        column-gap: 12px;
    }

    .mf-footer__links a {
        font-size: 11.5px;
    }

    .mf-footer__apps {
        gap: 5px;
    }

    .mf-footer__apps a {
        min-height: 56px;
        padding: 3px;
    }

    .mf-footer__bottom {
        padding-inline: 12px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .mf-footer__social a:hover,
    .mf-footer__apps a:hover {
        border-color: rgb(255 255 255 / 65%);
    }

    .mf-footer__links a:hover,
    .mf-footer__legal a:hover {
        color: #fff;
    }
}

/* AKHBARONA SITEWIDE MOBILE FOOTER V1 END */
