.btn_novo {
    width: max-content;
    background: #db2f67;
    color: #fff;
    font-family: 'Baloo Thambi 2', cursive, sans-serif;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 6px;
    margin: 0 auto;
}
.btn_novo:hover {
    background-color: #3264ae;
}
form.comunidade_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 50px auto;
}
form.comunidade_form input[type="text"], 
form.comunidade_form input[type="email"], 
form.comunidade_form select, 
form.comunidade_form textarea {
    padding: 10px 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #3264ae;
    resize: none;
}
form.comunidade_form ::placeholder {
    color: #000;
    opacity: 1;
}
form.comunidade_form input[type="submit"] {
    background: #3264ae;
    color: white;
    border: none;
    border-radius: 6px;
    height: 36px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}
form.comunidade_form input[type="submit"]:hover{
    border: 1px solid #3264ae;
    color: #3264ae;
    background: transparent;
}
form.comunidade_form .ck-editor__editable {
    min-height: 300px !important;
    max-height: 100% !important;
    overflow-y: auto !important;
}
.g-recaptcha {
    text-align: -webkit-right;
    margin: 10px 0;
}

.container_comunidade {
    margin-top: 30px;
}
.comunidade_item {
    display: flex;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border-bottom: 2px solid #3264ae;
    margin-bottom: 30px;
}
.comunidade_item_titulo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.comunidade_item_titulo a {
    color: #3264ae;
    font-weight: 500;
    font-size: 22px;
}
.comunidade_item_info {
    display: flex;
    gap: 20px;
}
.comunidade_autor_info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.comunidade_autor_info img {
    width: 40px;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    section.sidebar {
        display: none;
    }   
}
@media (max-width: 768px) {
    .comunidade_item {
        flex-direction: column;
        gap: 25px;
    }
}
@media (max-width: 540px) {
    .main {
        padding: 20px 10px;
    }
    .comunidade_item {
        padding: 20px 10px;
    }
}