/* Intro Text */
.intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  background: #f5f5f5;
  padding: 40px 30px;
  border-left: 6px solid #d71d07;
}

.intro .macht {
  color: #d71d07;
}

.intro .alarm {
  color: #ccb113;
}

.intro p {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.9;
  font-weight: bold;
}

/* Kachel Grid */
.fragen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Einzelne Kachel */
.frage-kachel {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}

.frage-kachel:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0 #d71d07;
  border-color: #d71d07;
}

.frage-nummer {
  font-family: Antonio, "Arial Black", sans-serif;
  font-size: 2rem;
  color: #ccb113;
  margin-bottom: 10px;
}

.frage-titel {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.7;
  letter-spacing: 2px;
}

.frage-beschreibung {
  color: #333333;
  line-height: 1.5;
}

.frage-link-hint {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ccb113;
  color: #d71d07;
  font-size: 1.125rem;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .intro {
    padding: 25px 20px;
  }

  .intro p {
    font-size: 1.1rem;
  }

  .fragen-grid {
    grid-template-columns: 1fr;
  }
}
