.kachel-block { 
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
  height: 100%;
  background: #e0d3b7;
}

.kachel-block.benefits {
  background: #ffffff;
}

.kachel-block > div {
  display: flex;
  flex-direction: column;
}

.kachel-block h3 {
  margin: 0;
  font-size: calc(32 / 16 * 1rem);
  line-height: 1.2; 
  align-self: center;
  color: #463D27;
}

.kachel-block.benefits > div > p {
  max-width: 560px;
}

.kachel-block.benefits > div > h3 { 
  margin-bottom: 15px;
  align-self: flex-start;
}

.kachel-block .kacheln {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kachel-block .kacheln.spalte-3 {
  grid-template-columns: repeat(3, 1fr);
}

.kachel-block .kacheln.spalte-2 {
  grid-template-columns: repeat(2, 1fr);
}

.kachel-block .kacheln.spalte-1 {
  grid-template-columns: repeat(1, 1fr);
}

.kachel-block .kacheln > .kachel {
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
} 

.kachel-block.benefits .kacheln > .kachel {
  border-radius: 0;
  align-items: flex-start;
  justify-content: flex-start;
}

.kachel-block .kacheln > .kachel,
.kachel-block .kacheln > .kachel a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  color: #363636;
  cursor: pointer;
}

.kachel-block .kacheln.spalte-1 > .kachel {
  width: fit-content;
  justify-self: center;
}

.kachel-block .kacheln > .kachel > p {
  margin: 0;
}

.kachel-block.benefits .kacheln > .kachel > p {
  max-width: 100%;
}

.kachel-block .kacheln > .kachel > p.title,
.kachel-block .kacheln > .kachel > a > p.title {
  font-family: 'RobotoRegular', sans-serif;
  color: #463D27;
  text-align: center;
  font-size: calc(28 / 16 * 1rem);
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
  margin: 0;
}

.kachel-block.benefits .kacheln > .kachel > p.title {
  text-align: left;
}

.kachel-block .kacheln > .kachel > a > p.btn-secondary  {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: calc(18 / 16 * 1rem);
  line-height: 1.2;
  margin: 0;
}

.kachel-block .kacheln > .kachel > a > p.btn-secondary > img {
  width: 16px;
  height: 100%;
}

.kachel-block .kacheln > .kachel > img,
.kachel-block .kacheln > .kachel > a > img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.kachel-block a.btn-primary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: fit-content;
  min-height: 56px;
  font-family: var(--font-zes-reg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  /* transition: all 0.5s linear; */
  margin-top: 40px;
  position: relative;
  font-size: calc(18 / 16 * 1rem);
  background: var(--zes-brown);
  color: #ffffff;
  width: fit-content;
  padding: 2px 30px;
  gap: 15px;
}

.kachel-block a.btn-primary.spalte-1 {
  align-self: center;
}

.kachel-block .kacheln > .kachel.green {
  background: #D3EAE4;
} 

.kachel-block .kacheln > .kachel.grey {
  background: #efefef;
}

.kachel-block .kacheln > .kachel.orange {
  background: #F1F1E6;
} 
  
.kachel-block .kacheln > .kachel.purple {
  background: #CCD7E4;
} 

@media only screen and (max-width: 1380px) { 
  .kachel-block .kacheln {
    margin-top: 3rem; 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media only screen and (max-width: 870px) { 
  .kachel-block .kacheln {
    margin-top: 3rem; 
    grid-template-columns: repeat(1, 1fr); 
  }
  .kachel-block .kacheln.spalte-3,
  .kachel-block .kacheln.spalte-2,
  .kachel-block .kacheln.spalte-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .kachel-block.benefits > div > h3 { 
    align-self: flex-start;
  }
  .kachel-block.benefits > div > p {
    max-width: 100%;
  }
  .kachel-block h3 {
    word-break: break-word;
    hyphens: auto;
  }
}

.block-editor-block-list__block .kachel-block {
  max-width: 100%;
  width: 100%; 
  padding-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem;
  box-sizing: border-box;
}