.container{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #1e1e1e;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto 10px auto;
    border-radius: 4px;
}

.top-row{ 
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.avatar{
    width: 160px;
    height: 60px;
    object-fit: cover; 
    border-radius: 4px;
}

.box-title{
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    text-align: left;
}

.toggle-button{
    width: 35px;
    display: block;
    margin: 0 auto;
    margin-top: 5px;
    padding: 5px 10px;
    background: #ffa214;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.toggle-button:hover{
    background-color: #c47b0d;
}

.toggle-button:focus{
    outline: none;
}

.post-title{
    font-size: 18px;
    color: #ffa214;
}

.post-subtitle{
    font-size: 14px;
    margin: 5px 0 0 0;
    color: #a3a3a3;
}

.post-subtitle span{
    color: #ffa214;
}

.pximg{
    image-rendering: pixelated !important;
}

.content {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.content.expanded {
    max-height: 9999999999px; /* ou um valor bem alto para garantir que mostra tudo */
}

@media (max-width: 768px) {
    .container {
        max-width: 90vw;
    }

    .top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

    .avatar {
        width: 100px; 
        height: 40px;
    }

    .box-title {
        height: auto;
        text-align: center; 
    }

    .post-title {
        font-size: 22px; /
    }

    .post-subtitle {
        font-size: 12px; 
    }

    .content {
        margin-top: 10px;
        font-size: 14px;
    }
}