/* LEFT SIDEBAR */
.postbitleft {
    width: 100%;
    max-width: 340px;
    min-height: 100%; /* Depends on parent height */
    border-right: solid 1px #393939;
    margin: auto;
}

/* MAIN CONTAINERS */
.postbitbox,
.postbithd,
.postbox,
.postbitbottom,
.postbitheader {
    width: 100%;
    max-width: 1800px;
    margin: auto;
}

/* HEADER */
.postbithd {
    background-color: rgba(18, 18, 17, 0.6);
    backdrop-filter: blur(5px);
    height: auto;
    padding: 20px;

    background-image: url(https://i.ibb.co/QjRLCLr/ezgif-129111cbe0b44.png);
    background-size: cover;
    background-position: center;
}

/* NAME WRAPPER */
.postname {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: auto;
    overflow: hidden;
}

/* LARGE BACKGROUND NAME */
.postbitname {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    text-transform: uppercase;
    color: rgba(169, 169, 169, 0.1);
    text-align: left;
    line-height: 120px;
}

/* FOREGROUND NAME */
.postbitfullname {
    font-family: 'DM Serif Display', serif;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bad072;
    text-align: left;

    margin-top: -70px;
    margin-right: 40px;

    text-shadow: 2px 4px 3px #000;
}

/* SUBTEXT */
.postbitlook {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;

    width: 100%;
    max-width: 1110px;

    color: #ececec;
    margin-top: 2px;
    text-shadow: 2px 2px 5px black;
}

/* POST BOX */
.postbox {
    width: 100%;
    max-width: 1800px;
    margin: auto;
    margin-bottom: 60px;

    background-color: rgba(18, 18, 17, 0.3);
    backdrop-filter: blur(5px);
}

/* USER SECTION */
.postbituser {
    width: 100%;
    max-width: 330px;
    padding: 20px;
    margin: auto;
}

/* AVATAR */
.postbitava {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: auto;

    border: solid 5px #191919;
}

/* CHARACTER BOX (SCROLLABLE) */
.postbitchar {
    width: 100%;
    max-width: 280px;
    height: 180px;

    background-color: #191919;
    padding: 5px;

    overflow-x: hidden;
    overflow-y: scroll;

    scrollbar-width: none; /* Firefox */
}

/* HIDE SCROLLBAR (WEBKIT) */
.postbitchar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* CHARACTER TEXT */
.postbitchartxt {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    text-align: justify;
    line-height: 17px;
    color: #ececec;

    padding: 5px;
    font-weight: 400;
}

/* MAIN POST TEXT */
.postbittxt {
    margin: 0 auto;
    padding-left: 125px;
    padding-right: 125px;
    width: 1300px;
}

/* BOTTOM BAR */
.postbitbottom {
    background-color: rgba(18, 18, 17, 0.6);
    width: 1640px;
    padding: 10px;
    margin: auto;
}

/* SUBTEXT (BOTTOM) */
.postbitsub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a9a9a9;

    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}

/* DIVIDER LINE */
.postbithr {
    width: 100%;
    max-width: 1192px;
    height: 1px;
    background-color: #393939;

    margin: 20px auto 30px 60px;
}

/* HEADER BAR */
.postbitheader {
    background-color: rgba(18, 18, 17, 0.9);
    backdrop-filter: blur(5px);
    padding: 10px;
}

/* TITLE */
.postbittitle {
    font-family: 'DM Serif Display', serif;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bad072;

    text-align: right;
    margin: 30px 30px 10px;
}

/* SUBTITLE */
.postbitsubtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ececec;

    text-align: right;
    margin: 0 30px 30px;
}

/* REMOVE POST NUMBER ICON */
.post_number a:after {
    content: none !important;
}

/* TABLET */
@media (max-width: 1024px) {
    .postbittxt {
        padding: 30px 20px;
        font-size: 11px;
    }

    .postbitfullname {
        font-size: 28px;
        margin-top: -40px;
    }

    .postbittitle {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .postbitname {
        font-size: 28px;
        line-height: 100px;
        text-align: center;
    }

    .postbitfullname {
        font-size: 22px;
        margin-top: -30px;
        text-align: center;
        margin-right: 0;
    }

    .postbittxt {
        font-size: 10px;
        padding: 20px 10px;
        line-height: 1.5;
    }

    .postbittitle,
    .postbitsubtitle {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .postbitava,
    .postbitchar {
        width: 100%;
        max-width: 100%;
    }
}