/* tabelle */
.ausbildung > ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem; /* gap-2 */
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}

.ausbildung > ul > li:first-child {
  font-weight: 700;
}

.ausbildung > ul > li > ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

@media (min-width: 768px) {
  .ausbildung > ul {
    grid-template-columns: 220px 1fr;
    column-gap: 1rem; /* gap-4 */
  }


  .ausbildung > ul > li:first-child {
    grid-column: 1;
  }


  .ausbildung > ul > li:not(:first-child) {
    grid-column: 2;
  }
}

.ausbildung > ul > li:nth-child(2) {
  font-weight: 600;
  margin-bottom: 4px;
}
/* card*/

/* Container becomes grid */
.card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Desktop: 2 cards per row */
@media (min-width: 768px) {
  .card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Each top-level UL becomes a card */
.card > ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem; /* rounded-lg */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

/* Subtle hover effect */
.card > ul:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Title (first li) */
.card > ul > li:first-child {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Subtitle (second li) */
.card > ul > li:nth-child(2) {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

/* Nested UL (feature list) */
.card > ul > li > ul {
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
}

/* Feature list item */
.card > ul > li > ul > li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Modern check bullet */
.card > ul > li > ul > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 600;
}

.card > p {
  display: none;
}


@media print {
 header,footer, .hide-on-print ,#js-mobile-toggle{
   display:none;
  }
/* Force container width like desktop */
  .container,
  .cvx {
    max-width: 1024px !important;
    width: 100% !important;
  }

  /* Force desktop grid layout */
  .cvx-headgrid {
    display: grid !important;
    grid-template-columns: 160px 1fr !important;
  }

  .cvx-kv {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
  }

  /* Force flex rows (instead of stacked) */
  .sm\:flex-row {
    flex-direction: row !important;
  }

  /* Prevent page breaks inside sections */
  section {
    page-break-inside: avoid;
  }

  /* Better print typography */
  body {
    font-size: 12pt;
  }

}
 
}

