/* bix-CSS-Präfix – minimale stabile Gestaltung */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f5f7fb;
font-family: system-ui, -apple-system, ‚Segoe UI‘, Roboto, ‚Helvetica Neue‘, sans-serif;
line-height: 1.5;
color: #1e293b;
padding: 2rem 1rem;
}
.bix-container {
max-width: 1120px;
margin: 0 auto;
background: white;
border-radius: 28px;
box-shadow: 0 12px 30px rgba(0,0,0,0.06);
padding: 2rem 2.2rem;
}
/* === Pflichtklassen === */
.bix-hero {
border-left: 6px solid #2563eb;
background: #f8fafc;
padding: 1.8rem 2rem;
border-radius: 20px;
margin-bottom: 2.2rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.bix-hero h1 {
font-size: 2.2rem;
font-weight: 650;
letter-spacing: -0.02em;
color: #0f172a;
display: flex;
align-items: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.bix-hero h1 small {
font-size: 1rem;
font-weight: 400;
color: #475569;
background: #e9edf2;
padding: 0.2rem 1rem;
border-radius: 40px;
margin-left: 0.5rem;
}
.bix-hero .sub {
margin-top: 0.5rem;
color: #334155;
font-size: 1.1rem;
border-top: 1px dashed #cbd5e1;
padding-top: 0.75rem;
}
/* Synonym-Sektion */
.bix-sec-syn {
background: #f1f5f9;
border-radius: 24px;
padding: 1.6rem 2rem;
margin-bottom: 2rem;
}
.bix-sec-syn h2, .bix-sec-kw h2, .bix-faq h2, .bix-sources h2, .bix-related h2 {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 1.2rem;
color: #0f172a;
letter-spacing: -0.01em;
}
.bix-sec-syn ul {
display: flex;
flex-wrap: wrap;
gap: 0.6rem 1rem;
list-style: none;
padding: 0;
}
.bix-sec-syn li {
background: white;
padding: 0.3rem 1.2rem;
border-radius: 40px;
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
border: 1px solid #e2e8f0;
font-weight: 500;
color: #1e293b;
}
/* Bedeutung (bix-sec-kw) */
.bix-sec-kw {
background: #ffffff;
border: 1px solid #e9edf2;
border-radius: 24px;
padding: 1.6rem 2rem;
margin-bottom: 2rem;
}
.bix-sec-kw p {
font-size: 1.05rem;
max-width: 75ch;
background: #fafcff;
padding: 0.8rem 1.2rem;
border-radius: 20px;
border-left: 4px solid #3b82f6;
}
/* Kreuzwort-Tabelle */
.bix-kw-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem 1.5rem;
padding: 0.5rem 0 0.2rem 0;
border-bottom: 1px solid #e2e8f0;
margin-bottom: 0.25rem;
}
.bix-kw-row:last-of-type {
border-bottom: none;
}
.bix-kw-row span {
padding: 0.4rem 0.2rem;
}
.bix-kw-row .bix-kw-answer {
font-weight: 500;
color: #0f172a;
}
.bix-kw-row .bix-kw-hint {
color: #475569;
}
.bix-kw-grid {
margin-top: 0.8rem;
}
/* FAQ */
.bix-faq {
background: #f8fafc;
border-radius: 24px;
padding: 1.6rem 2rem;
margin-bottom: 2rem;
border: 1px solid #eef2f6;
}
.bix-faq details {
background: white;
border-radius: 18px;
padding: 0.8rem 1.4rem;
margin-bottom: 0.7rem;
border: 1px solid #e2e8f0;
transition: 0.1s;
}
.bix-faq details[open] {
background: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.bix-faq summary {
font-weight: 600;
cursor: pointer;
color: #0b1e33;
padding: 0.2rem 0;
}
.bix-faq details p {
margin-top: 0.8rem;
padding-left: 0.2rem;
color: #1e293b;
}
/* Quellen */
.bix-sources {
background: #f1f5f9;
border-radius: 24px;
padding: 1.6rem 2rem;
margin-bottom: 2rem;
}
.bix-sources ol {
padding-left: 1.8rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.bix-sources li {
padding: 0.2rem 0;
}
.bix-sources a {
color: #1e4b8a;
text-decoration: none;
border-bottom: 1px dotted #94a3b8;
}
.bix-sources a:hover {
border-bottom: 1px solid #1e4b8a;
}
/* Verwandt – mit href=“/synonym/“ */
.bix-related {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 24px;
padding: 1.6rem 2rem;
margin-bottom: 0.5rem;
}
.bix-related ul {
display: flex;
flex-wrap: wrap;
gap: 0.8rem 1.2rem;
list-style: none;
padding: 0;
}
.bix-related a {
display: inline-block;
background: #f1f5f9;
padding: 0.4rem 1.4rem;
border-radius: 40px;
color: #075985;
font-weight: 500;
text-decoration: none;
border: 1px solid #dbe1e9;
transition: 0.1s ease;
}
.bix-related a:hover {
background: #e6edf8;
border-color: #94a3b8;
color: #022b44;
}
/* kleine Helfer */
.bix-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.03em;
color: #64748b;
margin-right: 0.5rem;
}
hr {
margin: 1.8rem 0 1rem 0;
border: 0;
border-top: 1px solid #e2e8f0;
}
@media (max-width: 640px) {
.bix-container { padding: 1.2rem; }
.bix-hero h1 { font-size: 1.8rem; }
.bix-kw-row { grid-template-columns: 1fr; gap: 0.2rem; }
}
wissenschaftliche Arbeit
Bedeutung · Synonyme · Kreuzworträtsel
🔁 Synonyme für „wissenschaftliche Arbeit“
- Studie
- Forschungsarbeit
- Abhandlung
- Dissertation
- Publikation
- These
- Paper
- Untersuchung
📖 Bedeutung
wissenschaftliche Arbeit – systematische, methodisch fundierte Darstellung eines Themas, die nach den Standards der Wissenschaft neue Erkenntnisse oder eine vertiefte Analyse