/* =========================================================
   THE WOUNDED LEGACY
   FOOTER PÚBLICO — MINIMAL
========================================================= */

.public-footer {

    position: relative;

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    background:
        #0D101C;

    border-top:
        1px solid
        rgba(178,151,88,.12);

    color:
        rgba(203,198,189,.46);

    font-family:
        'Poppins',
        sans-serif;
}


/* brilho extremamente discreto */

.public-footer::before {

    content: '';

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(178,151,88,.015),
            transparent 30%,
            transparent 70%,
            rgba(178,151,88,.01)
        );
}


/* =========================================================
   CONTEÚDO
========================================================= */

.public-footer-inner {

    position: relative;

    z-index: 2;

    width:
        min(
            1280px,
            calc(100% - 80px)
        );

    margin:
        0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    font-size: 8px;

    line-height: 1.4;

    letter-spacing: .15px;
}


/* =========================================================
   ESQUERDA
========================================================= */

.public-footer-left {

    display: flex;

    align-items: center;

    gap: 7px;

    white-space: nowrap;
}


.public-footer-title {

    color:
        rgba(178,151,88,.78);

    font-family:
        'Cinzel',
        serif;

    font-size: 8px;

    letter-spacing: .8px;
}


.public-footer-separator {

    color:
        rgba(178,151,88,.45);
}


/* =========================================================
   DIREITA
========================================================= */

.public-footer-right {

    text-align: right;

    white-space: nowrap;
}


/* =========================================================
   FULL HD — 1920 x 1080
========================================================= */

@media
(min-width: 1600px)
and (min-height: 900px) {

    .public-footer {

        min-height: 58px;
    }


    .public-footer-inner {

        width:
            min(
                1320px,
                calc(100% - 100px)
            );

        font-size: 8.5px;
    }


    .public-footer-title {

        font-size: 8.5px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .public-footer-inner {

        width:
            calc(100% - 40px);

        font-size: 7.5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .public-footer {

        min-height: 66px;
    }


    .public-footer-inner {

        width:
            calc(100% - 30px);

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 4px;
    }


    .public-footer-left {

        white-space: normal;
    }


    .public-footer-right {

        text-align: left;

        white-space: normal;
    }

}