/* Überschriften */
h1.font-UglyQua, 
h2.font-UglyQua {
    color: #1d1d1b;
    margin-bottom: 1.5rem;
}

h2.font-UglyQua {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

/* Text-Container */
.font-Leander {
    line-height: 1.6;
    color: #333;
}

/* Allgemeine Absätze */
.font-Leander p {
    margin-bottom: 0.75rem;
}

/* Einleitende Texte - auf gleicher Höhe wie Nummerierung */
.font-Leander > p:first-child,
.font-Leander p:not([data-number]) {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Nummerierte Punkte */
.font-Leander p[data-number] {
    position: relative;
    padding-left: 3.5rem;
    margin-left: 0;
}

/* Nummerierung Style */
.font-Leander p[data-number]:before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    color: #7952b3;
    font-weight: bold;
    width: 3rem;
    text-align: right;
    padding-right: 0.5rem;
}

/* Links innerhalb des Textes */
.font-Leander a {
    color: #7952b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.font-Leander a:hover {
    color: #5a3d8c;
}

/* Datum am Ende */
.text-muted {
    color: #6c757d !important;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h2.font-UglyQua {
        font-size: 1.3rem;
    }
    
    .font-Leander p[data-number],
    .font-Leander > p:first-child,
    .font-Leander p:not([data-number]) {
        padding-left: 3rem;
    }
}