.template__home {
}

.template__home .tiles {
  margin-block: 0.5rem;
  display: grid;
  gap: 0.5rem;
  align-items: stretch;
}

.template__home .tiles::before {
  display: none;
}

.template__home .tiles .tile {
  float: none;
  width: auto;
  padding-top: 0;
  border-radius: var(--border-radius-lg);
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.template__home .tiles .tile::before {
  content: "";
  float: left;
  padding-bottom: 100%;
}
.template__home .tiles .tile::after {
  clear: both;
  content: "";
  display: table;
}
.template__home .tiles .tile .content {
  position: static;
  display: block;
  font-size: 1.125rem;
}

@media (min-width: 600px) {
  .template__home .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .template__home .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .template__home .tiles {
    /* padding-inline: 0.5rem; */
  }
}

@media only screen and (min-width: 500px) {
}
