/* Container für alle Boxen */
.anurin-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin: 1em auto;
  max-width: 100%;
  padding: 0 1em;
}

/* Einzelne Karte */
.anurin-box {
  background: url('https://www.kampfumanurin.de/einstieg/assets/Textur.jpg') center/cover no-repeat;
  background-color: rgba(255, 248, 235, 0.9); /* fallback pergamentfarben */
  border-radius: 12px;
  padding: 1.5em;
  width: 280px;
  color: #3b2f28;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);

  position: relative;
}

/* Icon und Titel */
.anurin-content h2 {
    text-align: center;
    display: block;
    width: 100%;
}
.anurin-box h3 {
  font-size: 1.2em;
    font-family: 'Cinzel', serif;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

/* Beschreibungstext */
.anurin-box p {
  font-size: 0.95em;
  line-height: 1.5;
  color: #2f2a24;
}