/* MAIN */

main {
    max-width: 1200px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}


.main-content {
    max-width: 700px;
    width: 50%;
    padding: 32px 64px;
    background-color: blue;
    max-height: calc(70vh - 64px);
    overflow: auto;
}

.main-sidebar h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.main-sidebar {
    background-color: rgba(19, 180, 19, 0.738);
    border: 8px solid rgba(29, 255, 48, 0.738);
    height: 100%;
    width: 22%;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.main-sidebar .cat__img:hover {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.chat-sidebar {
    height: 100%;
    width: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.chat-sidebar__content iframe{
    overflow-y: scroll;
    max-height: 300px;
    max-width: 250px;
}

/* ------------------- POST ------------------ */

.post {
    color: white;
    margin: 24px 0;
    width: 100%;
    border: 1px solid #f9f9f9;
    padding: 24px 16px;
    background-color: rgb(25, 0, 107);
}

.post__article {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.post__article img {
    border-radius: 50%; 
    z-index: 999;
}

.post__article time {
    margin-left: -4px;
    margin-right: 8px;
    background-color: #00000096;
    padding: 8px;
    font-weight: bold;
}

.post__title {
    margin: 16px 0 8px 0
}

.post--text {
    background-color: red;
}