/* Container für das breite Lexikon (max 900px) */
.sprach-listen-container {
    display: grid;
    grid-template-columns: 1fr; /* Alles steht jetzt in EINER breiten Spalte */
    gap: 30px;
    max-width: 900px;
    margin: 30px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Die Themen-Boxen (jetzt in voller Breite) */
.listen-box {
    background-color: #ffffff;
    border: 1px solid #d3c5a3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.listen-box h4 {
    background-color: #1c86ee; /* Dein Ägäis-Blau */
    color: white;
    margin: 0;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.2em;
    letter-spacing: 1px;
}

/* Die Zeilenaufteilung (3 Bereiche nebeneinander) */
.listen-zeile {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Drei gleich große Spalten für Text */
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e0d8c3;
    font-size: 1.05em; /* Etwas größer und besser lesbar */
}

.listen-zeile:last-child {
    border-bottom: none;
}

/* Zebra-Musterung */
.listen-zeile:nth-child(even) {
    background-color: #f2f2f2;
}

.listen-zeile:hover {
    background-color: #e9e5dc;
}

/* Die 3 Text-Bereiche */
.wort-deutsch {
    font-weight: bold;
    color: #333;
    text-align: left;
}

.wort-lautschrift {
    color: #666;
    font-style: italic;
    text-align: center;
}

.wort-griechisch {
    font-weight: bold;
    color: #1c86ee;
    text-align: right;
}

/* Wenn Text über die ganze Breite gehen soll (wie bei Vokalen) */
.volle-breite {
    grid-column: 1 / -1;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

/* Für sehr kleine Handys etwas verkleinern */
@media (max-width: 600px) {
    .listen-zeile {
        font-size: 0.9em;
        padding: 10px;
    }
}