Meu projeto está assim:
Abaixo dessa tela preta, aparece a parte "Início" e os cartões normalmente. O problema é só no media query, o meu está assim (fiz algumas mudanças na nomenclatura):
@media screen and (min-width: 1440px) {
.menu__lateral {
position: static;
width: 200px;
grid-column: 1;
grid-row: 1 / span 2;
}
}
@media screen and (min-width: 1440px) {
.principal {
display: grid;
grid-template-columns: auto 1fr auto;
column-gap: 2rem;
padding: 1rem 3.75rem;
}
}
@media screen and (min-width: 1440px) {
.cartao__recentes {
display: grid;
grid-template-columns: auto auto;
align-items: center;
row-gap: 1.5rem;
width: 256px;
padding: 1rem;
box-sizing: border-box;
}
.cartao--recentes .cartao__titulo {
grid-column: auto;
}
}