/* Container für den gesamten FAQ-Bereich */
.faq-container {
  display: flex;
  justify-content: center;
  padding: 20px 30px;
}

.faq-main-content {
  max-width: 100%;
  width: 100%;
}

.faq-section {
  display: flex;
  flex-wrap: wrap;  /* Ermöglicht das Umfließen der Karten */
  /* justify-content: space-between;  /* Verhindert zu großen Abstand zwischen den Karten */
  gap: 20px;
}

/* Gestaltung der einzelnen FAQ-Karten */
.faq-card {
  display: flex;
  flex-direction: column;
  width: 100%;  /* Standardbreite auf 100% setzen */
  max-width: 270px; /* Maximalbreite für eine Karte */
  min-width: 250px; /* Minimalbreite für eine Karte */
  overflow: hidden;
	box-sizing: border-box;
  border: var(--gi-shadow-border);
  box-shadow: var(--gi-shadow-box);
  background: var(--gi-background-box);
  transition: border 0.3s ease;
  text-decoration: none;
}

.faq-card:hover {
  border-color: #3b82f6;
  text-decoration:none;
}

/* Inhalt der FAQ-Karten */
.faq-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* Ikon-Bereich */
.faq-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #f2f2f2;
}

.faq-card-icon i {
font-size:18px;
}

/* Textbereich */
.faq-card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Titel der Karte */
.faq-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #6dcff6;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-card-description {
  font-size: 14px;
  color: var(--gi-title-color);
  margin: 0;
  line-clamp: 3;
  overflow: hidden;
}

/* Anzahl der Artikel */
.faq-card-articles {
  display: flex;
  align-items: center;
}

.faq-card-articles span {
  font-size: 14px;
  color: #666;
}