header {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}

main {
  .home__content {
    display: grid;
    width: 100%;

    #logo {
      width: 100%;
      text-align: center;

      img {
        width: auto;
        height: 22rem;
      }
    }

    .home__heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-inline: 1rem;

      @media (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
        padding: 0;

        #search {
          width: 100%;
        }
      }

      h1 {
        margin: 0;
      }

      #search {
        .field {
          display: flex;
          justify-content: space-between;
          background-color: white;
          padding: .25rem .5rem;
          border: 1px solid black;
          padding-left: 1rem;
          border-radius: .5rem;

          input {
            border: none;
            padding: .5rem;
            min-width: 12rem;
            font-size: .875rem;
          }
        }
      }
    }

    .arenas__list {
      list-style-type: none;
      display: grid;
      width: 100%;
      gap: 1rem;
      padding-left: 0;

      .empty {
        background-color: #eee;
        text-align: center;
        padding: 1.5rem;
        color: #999;
        border-radius: 1rem;
      }

      .arena {
        text-decoration: none;
        color: black;

        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;

        .arena__image {
          grid-row: span 2;
          grid-column: 1;

          img {
            width: 4rem;
            height: 4rem;
            object-fit: contain;
            background-color: #fff;
            border-radius: .5rem;
          }
        }

        .arena__title {
          grid-column: 2;
          font-weight: bold;
          font-size: 1.25rem;
        }

        .arena__location {
          grid-column: 2;
          font-size: 1rem;
          font-weight: normal;
        }
      }
    }
  }
}