/* das zweite item nach unten verschieben 
.grid .item:nth-child(2) {
  margin-top: 80px; 
} */


/* jedes zweite item nach unten verschieben 
.grid .item:nth-child(even) {
    margin-top: 80px; 
} */


.grid {
  display: grid;
  gap: 0 !important;
  padding: 0;
  margin: 0;
}

.item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 150px);
  height: calc(100% - 150px);
}

.item .text h2 {
  font-size: 1.275rem;
}