.description {
  display: grid;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 5rem; }

.features {
  margin-top: 3rem;
  display: grid;
  grid-gap: 3rem 2rem;
  grid-template-columns: repeat(3, 1fr); }
  .features > * {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .features > * > :nth-child(1) {
      border: 1px solid #1ccdca;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .features > * > :nth-child(1) > i {
        font-size: 20px;
        color: #1ccdca; }
    .features > * > :nth-child(2) {
      margin-top: 1.25rem;
      font-weight: bold; }
    .features > * > :nth-child(3) {
      margin-top: 1rem;
      font-size: 0.9rem; }

.release-notes {
  margin-top: 1.5rem;
  display: grid;
  grid-row-gap: 1.5rem;
  grid-template-columns: 1fr; }
  .release-notes > * > :nth-child(1) > :nth-child(1) {
    font-weight: bold; }
  .release-notes > * > :nth-child(1) > :nth-child(2) {
    margin-left: 1rem;
    font-size: 0.9rem; }
  .release-notes > * > :nth-child(2) {
    margin-top: 0.25rem;
    font-size: 0.9rem; }
    .release-notes > * > :nth-child(2):empty {
      display: none; }
