.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
  }

  

  .verse, .commentary {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: #f0f4f8;
    border: 1px solid #d0d7de;
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 0.5rem;
    color: #444;
  }
  
  .verse strong, .commentary strong {
    color: #1d4ed8; /* highlight key points in blue */
  }
  