 /* Startkachel stylen */

.start-kacheln-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin: 40px 0;
}

.start-kachel {
  display: block;
  background: #ffffff;
  text-decoration: none;
  color: #1d3557;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.start-kachel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
  text-decoration: none;
}

.start-kachel img {
  display: block;
  width: 100%;
  height: auto;
}

.start-kachel-text {
  padding: 24px 28px 28px;
  background: #ffffff;
  border-top: 5px solid #dcd1b8;
}

.start-kachel-text h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1d3557;
}

.start-kachel-text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4f5d75;
}

@media (max-width: 700px) {
  .start-kacheln-2x2 {
    grid-template-columns: 1fr;
  }
  
}
/* Related Artikel auf der Homeseite (Menü Home) ausschalten */
.itemid-101 .related-articles {
    display:none !important;
}