.container_grid {
    display: flex;
    align-items: flex-start;
    width: 80%;
    min-height: 100vh;
}

.list_of_works {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    max-width: 270px;
    width: 100%;
    height: 120px;
    display: flex;
    background-color: var(--cor-amarelo-escuro);
    border-color: var(--cor-border);
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 2rem;  
}

.card-body {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
}

.text {
    width: 90%;
    text-align: left;
    flex-direction: column;
    margin: 0.5rem 1rem;
    font-family: var(--font-tertiary);
    font-size: 14px;
    overflow-y: hidden;
}

.text h5 {
    width: 100%;
    height: 54%;
    overflow-y: auto;
    text-justify: inter-word;
    text-align: justify;
    padding-right: .5rem;
}

.text p {
    text-align: justify;
    width: 100%;
    height: 45%;
}

.btn-add {
    width: 10%;
    margin: 0 auto;
    margin-right: 1rem;
    border: none;
    background-color: transparent;
}

.modal {
    background-color: #ffffff6c;
}

.modal-content {
    border: none;
    background-color: var(--cor-amarelo-escuro);
}

.modal-grid {
    background-color: var(--cor-amarelo-escuro);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.227);
}

.modal-header {
    border: none;
}

.modal-body {
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-tertiary);
    font-size: 14px;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .container_grid {
        width: 100%;
    }
}

@media screen and (max-width: 990px) {
    .container_grid {
        width: 100%;
    }
    .list_of_works {
        justify-content: center;
    }

    
}

