.lead {
  font-size: 18px;
  max-width: 700px;
  text-align: center;
  padding: 0 2px;
}

.direct-hero {
  text-align: center;
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* ================== Karten-Grid ================== */
.direct-grid {
  display: grid;
  grid-template-columns: 1fr;

  gap: 28px;
  margin: 24px 10px 40px;
}

.direct-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 320px;
  justify-items: end;
}
/* Bildseite */
.direct-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.direct-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
      border-radius: 18px;
}

/* Textseite */
.direct-content {
  padding: 20px;
}


/* Chips & Buttons */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3ee;
  color: #2d5a32;
  font-size: 14px;
  border: 1px solid #dfe9df;
}

.chip-ok {
  background: #e8f6ea;
  color: #1b6e24;
  border-color: #cfeccd;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.08s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}



/* ================== Galerie ================== */
.direct-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 10px 44px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================== Info-Karten ================== */
.direct-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
  padding: 10px;
}

.info-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.info-card ol {
  margin: 6px 0 0 20px;
}
