Estou tendo problemas com o alinhamento/distribuição dos itens nos dois cards. Acredito que meu código esteja igual ao das aulas, pois já revisei algumas vezes e não encontrei erros.
 
   
 
carrossel.css
.carrossel__titulo {
    color: var(--laranja);
    background-color: var(--branco);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 1em 0 0.5em 0; /* COMPARAR COM UM RELÓGIO; SENTIDO HORÁRIO. */
}
.swiper-pagination {
    position: initial;
    margin: 1em 0;
}
.swiper-slide img{
    width: 100%;
}
.swiper-button-prev, .swiper-button-next {
    display: none;
}
.card {
    border-radius: 10px;
    background: var(--branco);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 1em;
    padding: 1em;
}
.card__descricao {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
}
.descricao__titulo {
    color: var(--laranja);
    font-weight: 700;
}
.descricao__titulo-livro {
    color: var(--azul);
    font-size: 18px;
    font-weight: 700;
    margin: 0.5em 0;
}
.descricao__texto {
    font-size: 14px;
}
.card__botoes {
    display: flex;
    justify-content: space-between;
}
.botoes {
    display: flex;
    list-style-type: none;
}   
.botoes__item {
    margin: 0 0.5em;
    
}
.botoes__ancora {
    background-color: var(--laranja);
    padding: 1em 2.2em;
    color: var(--branco);
    font-weight: 700;
    text-decoration: none;
}
styles.css
@import url("styles/header.css");
@import url("styles/banner.css");
@import url("styles/carrossel.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
:root {
    --cor-de-fundo: #EBECEE;
    --branco: #FFFFFF;
    --laranja: #EB9B00;
    --azul: #002F52;
    --azul-degrade: linear-gradient(98deg, #002F52 35.49%, #326589 165.37%);
    --fonte-principal: 'Poppins';
}
body {
    background-color: var(--cor-de-fundo);
    font-family: var(--fonte-principal);
    font-size: 16px;
    font-weight: 400;
}
 
            