/* Combined stylesheet for the open-data pages (daten.html, daten-*.html).
   The data-page generator copies exactly one stylesheet link from daten.html,
   so this file imports the site's fonts + base styles and adds the few
   classes the generated data page markup needs. */
@import url("../fonts/fonts.css");
@import url("style.css?v=9d642e26");

.prose { color: var(--gray-700); line-height: 1.75; }
.prose h2 { color: var(--navy); margin: 40px 0 16px; font-size: 1.5rem; }
.prose h3 { color: var(--navy); margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose a { color: var(--sky); }
.table-wrapper { overflow-x: auto; margin: 24px 0; }
.table-wrapper .compare-table { min-width: 720px; }
.cell-empty { color: var(--gray-400, #94a3b8); }
.info-box.expert { background: var(--gray-50); border: 1px solid var(--gray-200); border-left: 4px solid var(--sky); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; font-size: .95rem; line-height: 1.7; }
.related-articles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 16px; }
.related-card { display: block; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow .15s ease, transform .15s ease; }
.related-card:hover { box-shadow: 0 6px 18px rgba(30, 58, 95, .10); transform: translateY(-2px); }
.related-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.related-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; margin: 0; }
.changelog-list { list-style: none; padding: 0; margin: 12px 0 0; }
.changelog-list li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.changelog-list li strong { color: var(--navy); margin-right: 12px; }
.btn.btn-primary { display: inline-block; }
