/* [project]/app/ratgeber/page.css [app-client] (css) */
.ratgeber-page .page-hero {
  height: auto;
  min-height: 420px;
}

.ratgeber-grid-section {
  background: var(--page, #fafaf7);
  padding: 64px 28px;
}

.ratgeber-grid-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ratgeber-empty {
  text-align: center;
  color: var(--muted, #6b6b6b);
  padding: 80px 20px;
  font-size: 16px;
}

.ratgeber-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  display: grid;
}

.rcard {
  color: inherit;
  background: #fff;
  border: 1px solid #e7e3d6;
  border-radius: 4px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.rcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #00000014;
}

.rcard-img {
  aspect-ratio: 16 / 10;
  background: #1a2410;
  position: relative;
  overflow: hidden;
}

.rcard-img img {
  object-fit: cover;
}

.rcard-img-fallback {
  background: radial-gradient(circle at 70% 40%, #7fa23d4d, #0000 55%), linear-gradient(135deg, #2f4417 0%, #0f1a08 100%);
  position: absolute;
  inset: 0;
}

.rcard-cat {
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono), "JetBrains Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #0f1a08d9;
  border-radius: 999px;
  padding: 4px 10px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.rcard-body {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 20px 22px 22px;
  display: flex;
}

.rcard-date {
  color: var(--muted, #8a8a8a);
  font-size: 12px;
  font-family: var(--font-mono), "JetBrains Mono", monospace;
  letter-spacing: .05em;
}

.rcard-title {
  font-family: var(--font-oswald), "Oswald", sans-serif;
  color: var(--ink, #1a1a1a);
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.rcard-excerpt {
  color: var(--muted, #555);
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.rcard-cta {
  color: var(--accent-2, #7fa23d);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .ratgeber-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .ratgeber-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_ratgeber_page_0wvt0np.css.map*/