.cards-container {
  width: 90%;
  margin: 0 auto;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 5rem;
}

.card {
  border: 1px solid rgb(230 230 230);
  border-radius: 5px;

  .logo-wrapper {
    height: 150px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    .logo {
      max-width: 180px;
      max-height: 120px;
    }
  }
  
  .description-wrapper {
    height: 100px;
    padding: 1.5rem 1.5rem;
    text-align: left;
    background-color: rgb(240 240 240);
    overflow: hidden;
  
    h3 {
      all: unset;
      font-size: 1.2rem;
      font-weight: bold;
      font-family: sans-serif;
      text-transform: uppercase;
    }
  
    p {
      font-size: 1.2rem;
      line-height: 2rem;
    }
  }
}
