/* Content Styling */

/* Basic Typography */
.main-content {
    line-height: 1.6;
    font-size: 16px;
}

.main-content h1, 
.main-content h2, 
.main-content h3, 
.main-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: normal;
}

.main-content h1 {
    font-size: 2em;
}

.main-content h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3em;
}

.main-content h3 {
    font-size: 1.2em;
}

.main-content h4 {
    font-size: 1em;
    font-weight: bold;
}

/* Paragraphs */
.main-content p {
    margin-bottom: 1em;
}

/* Lists */
.main-content ul,
.main-content ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.main-content ul {
    list-style-type: disc;
}

.main-content ol {
    list-style-type: decimal;
}

.main-content li {
    margin-bottom: 0.5em;
}

.main-content li p {
    margin-bottom: 0.5em;
}

/* Emphasis */
.main-content em {
    font-style: italic;
}

.main-content strong {
    font-weight: bold;
}

/* Links */
.main-content a {
    color: #000;
    text-decoration: underline;
}

.main-content a:hover {
    text-decoration: none;
}

/* Blockquotes */
.main-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    color: #666;
    margin-bottom: 1em;
}

/* Code */
.main-content code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

.main-content pre {
    background-color: #f5f5f5;
    padding: 1em;
    overflow-x: auto;
    margin-bottom: 1em;
}

.main-content pre code {
    background-color: transparent;
    padding: 0;
}

/* Tables */
.main-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}

.main-content th,
.main-content td {
    border: 1px solid #ddd;
    padding: 0.5em;
    text-align: left;
}

.main-content th {
    background-color: #f5f5f5;
}

/* Images */
.main-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
}

/* Profile Image in VITA */
.main-content img[alt="ellihurst"],
.main-content img[title="ellihurst"],
.vita-content img[alt="ellihurst"],
.vita-content img[title="ellihurst"] {
    max-width: 150px; /* Noch kleinere Größe für das Profilbild */
    height: auto;
    float: right; /* Bild rechts ausrichten */
    margin: 0 0 1em 1em; /* Abstand unten und links */
    border-radius: 4px; /* Leicht abgerundete Ecken */
    border: 1px solid #eee; /* Subtiler Rahmen */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Leichter Schatten für mehr Tiefe */
}

/* VITA Styling */
.vita-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vita-content h1 {
    margin-bottom: 0.5em;
    font-size: 2.2em;
    font-weight: 300;
}

.vita-content h2 {
    clear: both; /* Verhindert Überlappung mit dem Bild */
    margin-top: 2em;
    color: #333;
    font-size: 1.3em;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3em;
}

.vita-content ul {
    margin-bottom: 1.5em;
}

.vita-content li {
    margin-bottom: 0.3em;
}

.vita-content em {
    color: #555;
}

.vita-content strong {
    font-weight: 500;
}

/* Horizontal Rule */
.main-content hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 2em 0;
}

/* Definition Lists */
.main-content dl {
    margin-bottom: 1em;
}

.main-content dt {
    font-weight: bold;
}

.main-content dd {
    margin-left: 2em;
    margin-bottom: 0.5em;
}
