@media (max-width: 599px) {

    .main{
        flex-direction: column;
        align-items: center;    
    }

    .mainContent{
        flex-direction: column;
        align-items: center;
    }

    .singlePostMain{
        flex-direction: column;
        align-items: center;
    }

    .headerContainer{
        height: auto;
    }

    .top{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-right: 0;
    }

    .content{
        flex-direction: column;
        gap: 10px;
    }

    .bottomBanner{
        display: none;
    }

    .tickerBanner{
        display: none;
    }

    /* HAMBURGER MENU */
.mobileMenuBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #af0000;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    z-index: 10;
}

.menuToggle {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

/* MENU DROPDOWN */
.mobileMenu {
    max-height: 0;
    overflow: hidden;
    background: #af0000;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    position: relative;
    width: 100%;
    padding: 0 20px;
    height: 150px;
}

.mobileMenu.active {
    max-height: 300px;
    border-bottom: 1px solid black;
}

body.menu-open .headerContainer {
    transition: transform 0.4s ease-in-out;
    transform: translateY(300px);
}

body.menu-open #mainContent {
    transition: transform 0.4s ease-in-out;
    transform: translateY(300px);
}

.nav-menu-mobile {
    display: block;
    list-style: none;
    padding: 0 10px;
}

.nav-menu-mobile ul {
    list-style: none;
    padding: 10px 0;
    text-align: center;
}

.nav-menu-mobile li {
    padding: 12px 0;
}

.nav-menu-mobile li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    display: block;
    transition: color 0.3s ease;
}
    /* FOOTER */

.footerContainer{
    height: auto;
}

.footerContent{
    flex-direction: column;
    align-items: center;
}

.row{
    width: 90%;
}

}

