/* texte.css */
/* Layout für #texte im Stil kompakter Pinnwand-Einträge */
#texte {
    background-color: #fff;
    color: #1f1c24;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 13.5px;
}

#texte #theorietitel {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1f1c24;
    text-align: left;
}

#texte p {
    margin-bottom: 14px;
    text-align: justify;
}

#texte sup {
    font-size: 0.75em;
}

#texte #theorieliteratur {
    font-size: 0.85em;
    color: #555;
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 12px;
}

#texte #theoriebutton {
    text-align: right;
    margin-top: 22px;
}

#texte #theoriebutton img {
    width: 110px;
    transition: transform 0.2s ease;
}

#texte #theoriebutton img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 800px) {
    #texte {
        padding: 22px;
        font-size: 12.5px;
    }
}

/* Globale Link-Farben */
a {
    color: #db3d64;
    text-decoration: underline;
}

a:hover {
    color: #c12d56;
}
