main.soulody > section#community {
  margin-top: 8px;
  display: grid;
  place-items: center;
  padding: 0 16px;

  > aside.cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    grid-template-rows: auto auto auto;
    gap: 16px;
    justify-items: center;
    padding: 16px 0;
    align-items: center;
    max-width: 1044px;

    @media screen and (max-width: 1050px) {
      display: block;
      width: unset;
      align-items: center;
      justify-content: center;
    }


    > community-card {
      width: 100%;
      max-width: 100%;
      justify-self: center;

      &:nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 1;
      }

      &:nth-child(2) {
        grid-column: 4 / 6;
        grid-row: 1;
      }

      &:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
      }

      &:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
      }

      &:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
      }

      &:nth-child(6) {
        grid-column: 2 / 4;
        grid-row: 3;
      }

      &:nth-child(7) {
        grid-column: 4 / 6;
        grid-row: 3;
      }

      @media screen and (max-width: 1050px) {
        max-width: 470px;
        margin-bottom: 20px;

        &:nth-child(1),
        &:nth-child(6) {
          margin-right: 0;
        }

        &:nth-child(2),
        &:nth-child(3),
        &:nth-child(4),
        &:nth-child(5),
        &:nth-child(7) {
          margin-left: 0;
        }
      }
    }
  }

  > main.text-container {
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 50%;
    margin-top: 60px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);

    > header {
      display: flex;
      flex-direction: column;
      align-items: center;

      > h2 {
        margin-top: 32px;
        text-align: center;
      }
    }

    > see-more-button {
      margin-top: 48px;
    }
  }
}
