:root {
    --orange: rgb(255, 144, 0);
    --light-orange: rgb(255, 208, 146);
    --navbar: rgb(21, 21, 21);
    --white: rgb(255, 255, 255);
}

body {
    background-color: #000000;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 15px;
    font-weight: 400;

    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.mzlogo {
  display: block;
  font-family: sans-serif;
  font-weight: bold;
  padding-left: 0 !important;
  align-items: start;
}

.mzlogo span:nth-child(2) {
  background: #FF9900;
  color: #000000;
  border-radius: 5px;
  padding: 0 5px 0vw 5px;
  display: inline-block;
}

main {
    width: 74%;
    margin-left: 50%;
    transform: translate(-50%, 0);
}

.Section {
    padding-bottom: 30px;
}

h2 {
    font-weight: 700 !important;
    color: var(--white);
    text-wrap: nowrap;
    font-size: clamp(0px, 6vw, 30px);
}
p {
    font-weight: 400 !important;
    color: rgb(188, 188, 188);
}

hr {
    background-color: rgba(198, 198, 198, 0.5);
    margin-bottom: 20px !important;
}

.networkListContent {
    background-color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    display: flex;
    height: 22px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.networkTab {
    color: #969696;
    text-transform: uppercase;
    font-size: 11px;
}
.networkTab:hover {
    color: var(--orange);
}

@media (max-width: 600px) {
    .Posts {
        grid-template-columns: repeat(auto-fill, 100%) !important;
    }
}

@media (max-width: 992px) {
    .networkListContent {
        display: none;
    }
    .SectionTitle {
        text-align: center;
        padding: 10px;
    }
    .Posts {
        justify-content: center;
        gap: 20px !important;
    }
    main {
        width: 90%;
    }
    #ReadMore {
        font-size: 20px;
    }
    .searchbar {
        display: none;
    }
    .navbar-collapse {
        max-width: 100%;
    }
    .nav-item {
        text-align: center;
    }
}


.searchbar{
    min-width: 30%;
    color: var(--white) !important;
    border-color: rgba(112, 112, 112, 0.4) !important;
    background-color: rgba(96, 96, 96, 0.2) !important;
}

.bottom-nav {
    border-top: rgb(255, 0, 0) !important;
    border-width: 0.3px;
    margin-bottom: 20px;
}
.nav-link {
    color: var(--white);
    opacity: 0.6;
    text-align: center;
    transition: 1s;
}
.nav-link:hover {
    color: var(--white);
    opacity: 1;
}

.navbar {
    width: 70%;
    padding: .5rem 0rem !important;
}

.navbar-container {
    justify-content: center;
    display: flex;
    background-color: var(--navbar) !important;
    border-top: rgb(85, 85, 85);
    border-bottom: rgb(36, 36, 36);
    border-width: 0.3px;
    border-style: solid none solid none;
}

.bannerad {
    aspect-ratio: 16 / 9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;

    height: 100px;
    width: 100%;
    border-radius: 5px;
}
  
.Posts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, clamp(200px, calc(100% / 4.5), 999px));
    gap: 10px calc(10px + 1rem);
}

.Post {
    width: 100%;
    cursor: pointer;
    transition: 200ms;
    border-radius: 5px;
}
.Post:hover {
    text-decoration: none;
    transform: scale(1.01);
}
.Post > img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    aspect-ratio: 16 / 9;
}
.Post > p {
    margin-bottom: 0;
    padding-top: 3px;
}
.Post > span {
    color: rgb(134, 138, 145);
    font-size: 14px;
}

#YTVideo {
    aspect-ratio: 16 / 9;
    width: 100%;
    padding-bottom: 10px;
}
#videotitle {
    inline-size: 100%;
    font-size: clamp(0px, 4vw, 24px);
    text-wrap: wrap;
}
#description {
    white-space: pre-line;
	text-overflow: ellipsis; 
    white-space: pre-line;
    overflow: hidden;
    max-height: 33px;
}
.description-open {
	max-height: 100% !important;
}

#ReadMore {
	cursor: pointer;
    padding-bottom: 10px;
    font-size: 16px;
    color: var(--light-orange);
}

.profile > h2 {
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

button {
    border: none;
    background-color: var(--orange);
    border-radius: 3px !important;
    min-width: 140px;
}