.markdown-content {
  text-align: center;
}

.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
}

.highlight-card {
  display: block;
  flex: 1 1 220px;
  max-width: 280px;
  padding: 1.5rem;
  border: 1.5px solid var(--light-secondary-color);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.highlight-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.highlight-card svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--accent-color);
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  margin: 0.25rem 0;
  font-size: 1.05rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.page-icon {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

.page-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--accent-color);
}

/* Section eyebrow headings on subpages (e.g. "Was ich kann") */
.post-content h4 {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-bottom: 1.5px solid var(--light-secondary-color);
  padding-bottom: 0.5rem;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}

.info-card {
  flex: 1 1 220px;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--light-secondary-color);
  border-radius: 8px;
  transition: border-color 0.15s ease;
}

.info-card:hover {
  border-color: var(--accent-color);
}

.info-card svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--accent-color);
  margin-bottom: 0.5rem;
}

.info-card h5 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.85;
}
