/**
 * Wiederverwendbare VDB-Komponenten
 * Ausgelagert aus startseite.css für weitere Seiten/Template.
 */

/* ==========================================================================
   Buttons
   ========================================================================== */
.vdb-btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.62rem 1.35rem;
  font-family: var(--vdb-font-family);
  font-size: var(--vdb-font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent; /* gleiche Höhe wie Sekundär-Button mit Rand */
  line-height: 1.25;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vdb-btn--primary {
  background-color: var(--vdb-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(218, 145, 12, 0.24);
}

.vdb-btn--primary:hover {
  background-color: var(--vdb-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(218, 145, 12, 0.32);
}

.vdb-btn--secondary {
  font-weight: 600;
  background-color: #f9f9f9;
  color: #305f67;
  border: 1px solid #e0e0e0;
}

.vdb-btn--secondary:hover {
  background-color: #f4f6f8;
  color: #224f56;
  border-color: #cfd5da;
}

/* ==========================================================================
   Section Title / Desc
   ========================================================================== */
.vdb-section-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--vdb-primary);
  margin: 0 0 var(--vdb-spacing-sm);
}

.vdb-section-title--center {
  text-align: center;
}

.vdb-section-desc {
  color: var(--vdb-text);
  font-size: var(--vdb-font-size-base);
  margin: 0 0 var(--vdb-spacing-lg);
  line-height: 1.5;
  max-width: 700px;
}

.vdb-section-desc--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   Listen
   ========================================================================== */
.vdb-list {
  list-style: none;
  margin: 0 0 var(--vdb-spacing-md);
  padding: 0;
}

.vdb-list--check li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.62rem;
  color: #42525c;
  line-height: 1.6;
}

.vdb-list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1em;
  color: var(--vdb-secondary);
  font-weight: bold;
  line-height: 1.4;
}

/* ==========================================================================
   Card
   ========================================================================== */
.vdb-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2.1rem 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.vdb-card__icon {
  margin-bottom: var(--vdb-spacing-sm);
  display: flex;
  justify-content: center;
}

.vdb-card__icon img {
  max-width: 104px;
  width: 100%;
  height: auto;
  display: block;
}

.vdb-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vdb-primary);
  margin: 0 0 calc(var(--vdb-spacing-xs) + 8px);
  line-height: 1.35;
}

.vdb-card__text {
  font-size: 0.98rem;
  color: var(--vdb-text);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Quote
   ========================================================================== */
.vdb-quote {
  margin: var(--vdb-spacing-md) 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--vdb-accent);
  font-size: var(--vdb-font-size-lg);
  font-style: italic;
  color: var(--vdb-primary);
}

/* ==========================================================================
   Stat
   ========================================================================== */
.vdb-stat__number {
  font-weight: 700;
  font-size: 1.95rem;
  color: var(--vdb-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  white-space: nowrap;
}

.vdb-stat__label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #4c5d67;
  line-height: 1.35;
}
