﻿/* Reset & Basis */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

#border {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#container { padding: 1rem; }

/* Header */
#header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 3px solid #4CAF50;
    margin-bottom: 2rem;
}

#header h1 { color: #2E7D32; font-size: 2.5rem; margin-bottom: 0.5rem; }
#header h3 { color: #666; font-weight: normal; }

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

nav ul li a {
    padding: 0.5rem 1rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

nav ul li a:hover { background: #388E3C; }

/* ===== 2-SPALTIGES LAYOUT ===== */
.layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

/* Hauptinhalt */
#content section { margin-bottom: 3rem; }
#content h2 { color: #2E7D32; border-bottom: 2px solid #4CAF50; padding-bottom: 0.5rem; margin-bottom: 1rem; }
#content p { margin-bottom: 1rem; }
.lead { font-size: 1.1rem; font-style: italic; color: #555; }

/* ===== SIDEBAR ===== */
#sidebar {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    position: sticky;
    top: 1rem;
}

#sidebar section { margin-bottom: 2rem; }
#sidebar section:last-child { margin-bottom: 0; }

#sidebar h2 {
    font-size: 1.2rem;
    color: #2E7D32;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

#sidebar ul { list-style: none; }
#sidebar ul li { padding: 0.4rem 0; }
#sidebar ul li a { color: #333; text-decoration: none; transition: color 0.3s; }
#sidebar ul li a:hover { color: #4CAF50; }

/* Tipps-Box (Affilinet) */
.tipps-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.tipps-box a { color: #2E7D32; font-weight: bold; }

/* Frosch-Bilder (Originalgröße) */
.frog-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-end;
    margin: 2rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.frog-gallery img {
    height: 75px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s;
}

.frog-gallery img:hover { transform: scale(1.1); }

/* Frosch-Liste */
.frog-list {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.frog-list li { padding: 0.25rem 0; }

/* Sitemap-Tabelle (A-Z) */
.sitemap-table {
    border-collapse: collapse;
    width: 100%;
}

.sitemap-table td { padding: 0.35rem; text-align: center; }

.sitemap-table a {
    display: block;
    padding: 0.2rem;
    background: #e8f5e9;
    color: #2E7D32;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.sitemap-table a:hover { background: #4CAF50; color: white; }

/* ===== FOOTER (verbessert) ===== */
#footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 2px solid #ddd;
    background: #f5f5f5;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #1976D2;
    text-decoration: underline;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    background: #1976D2;
    border-color: #1976D2;
}

/* Rechtliche Links (Impressum, Datenschutz) - etwas dezenter */
.footer-legal .footer-links a {
    color: #333;
    border-color: #ccc;
    font-weight: normal;
}

.footer-legal .footer-links a:hover {
    background: #333;
    border-color: #333;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* ===== RESPONSIVE (Mobil) ===== */
@media (max-width: 768px) {
    .layout { grid-template-columns: 1fr; }
    #sidebar { position: static; }
    #header h1 { font-size: 1.8rem; }
    nav ul { flex-direction: column; }
    .frog-list { columns: 1; }
    .footer-links { flex-direction: column; align-items: center; }
}
/* ===== 28 SAMMELFIGUREN GRID ===== */
.figuren-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    border: 2px solid #c8e6c9;
}

.figur-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.figur-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    background: #f9fbe7;
}

.figur-nr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.figur-name {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

.figur-card:hover .figur-nr {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .figuren-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .figur-card {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .figur-nr {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.8rem;
    }
    
    .figur-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .figuren-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== EINLEITUNGS-SEKTION ===== */
.intro-section {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-left: 5px solid #4CAF50;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.intro-section h2 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Erster Absatz etwas hervorheben */
.intro-text:first-of-type {
    font-size: 1.15rem;
    color: #333;
}

/* Hervorhebungen */
.intro-text strong {
    color: #2E7D32;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .intro-section {
        padding: 1.5rem;
    }
    
    .intro-section h2 {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: #e8f5e9;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.2rem 0;        /* ← geändert: 2rem oben UND unten */
    font-size: 0.9rem;
    color: #555;
}

/* ===== GENERATION-GRID MIT 5 SPALTEN ===== */
.generation-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE für 5er-Grid ===== */
@media (max-width: 1100px) {
    .generation-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .generation-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .generation-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* ===== FOTOGALERIE ===== */
.foto-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.foto-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
    margin: 0; /* Reset für figure */
}

.foto-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.25);
    border-color: #4CAF50;
}

.foto-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.foto-item figcaption {
    padding: 0.75rem;
    text-align: center;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .foto-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ===== IMPRESSUM-SPEZIFISCHE STYLES ===== */
.impressum-box {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-left: 5px solid #4CAF50;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.impressum-box h2 {
    color: #2E7D32;
    border-bottom: none;
    margin-bottom: 1rem;
}

.kontakt-info {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.kontakt-info a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

.projekt-info {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.projekt-info strong {
    color: #2E7D32;
}

/* ===== IMPRESSUM-FIGUREN-GRID (28 kleine Bilder) ===== */
.impressum-figuren-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #c8e6c9;
    justify-items: center;
}

.impressum-figuren-grid img {
    height: 75px;
    width: auto;
    transition: transform 0.3s;
    cursor: default;
}

.impressum-figuren-grid img:hover {
    transform: scale(1.3);
    z-index: 10;
    position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .impressum-figuren-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .impressum-figuren-grid img {
        height: 60px;
    }
}

/* ===== DATENSCHUTZ-SPEZIFISCHE STYLES ===== */
.datenschutz-box {
    background: white;
    border-left: 5px solid #4CAF50;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.datenschutz-box h2 {
    color: #2E7D32;
    border-bottom: 2px solid #c8e6c9;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.datenschutz-box h3 {
    color: #333;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.3rem;
}

.datenschutz-box h4 {
    color: #555;
    font-size: 1.05rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.datenschutz-box p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.datenschutz-box a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
}

.datenschutz-box a:hover {
    text-decoration: underline;
}

/* ===== GLIEDERUNG ===== */
.datenschutz-gliederung {
    background: #f9f9f9;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.datenschutz-gliederung li {
    padding: 0.4rem 0;
}

.datenschutz-gliederung a {
    color: #2E7D32;
    text-decoration: none;
}

.datenschutz-gliederung a:hover {
    text-decoration: underline;
}

/* ===== RECHTE-LISTE ===== */
.datenschutz-rechte {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.datenschutz-rechte li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #444;
}

/* ===== WIDERSPRUCHS-HINWEIS ===== */
.datenschutz-widerspruch {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

/* ===== USA-HINWEIS ===== */
.datenschutz-hinweis {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-size: 0.95rem;
}

/* ===== EXTERNE LINKS-LISTE ===== */
.datenschutz-links {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.datenschutz-links li {
    padding: 0.3rem 0;
}

/* ===== STAND ===== */
.datenschutz-stand {
    text-align: right;
    color: #777;
    font-size: 0.9rem;
    padding: 1rem 0;
}

/* ===== FAKTEN-GRID ===== */
.fakten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fakt-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fakt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.fakt-icon {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.fakt-card h3 {
    color: #2E7D32;
    font-size: 1.2rem;
    margin: 0.5rem 0 0.75rem 0;
    text-align: center;
    border-bottom: 2px solid #c8e6c9;
    padding-bottom: 0.5rem;
}

.fakt-card p {
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.fakt-card strong {
    color: #2E7D32;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .fakten-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fakt-icon {
        font-size: 2rem;
    }
}

/* ===== LEXIKON-GRID (im Stil der Fakten-Karten) ===== */
/* ===== LEXIKON-GRID (6 Karten pro Reihe) ===== */
.lexikon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.lexikon-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lexikon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

/* Das Icon (groß, zentriert) */
.lexikon-icon {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Deutscher Name */
.lexikon-card h3 {
    color: #2E7D32;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.25rem 0;
    border-bottom: none;
    padding: 0;
    text-align: center;
}

/* Lateinischer Name */
.lexikon-latein {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Beschreibungstext */
.lexikon-card p {
    color: #444;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding: 0;
    text-align: center;
    flex-grow: 1;
}

.lexikon-card p strong {
    color: #2E7D32;
    font-weight: 600;
}

/* Tags Container */
.lexikon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

/* Einzelne Tags */
.lexikon-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2E7D32;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.lexikon-card:hover .lexikon-tag {
    background: #c8e6c9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .lexikon-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 900px) {
    .lexikon-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 600px) {
    .lexikon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .lexikon-card {
        padding: 1rem;
    }
    
    .lexikon-icon {
        font-size: 2rem;
    }
    
    .lexikon-card h3 {
        font-size: 0.95rem;
    }
    
    .lexikon-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .lexikon-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== FROSCHLEXIKON A-Z (lebendiges Design) ===== */
.lexikon-section {
    background: linear-gradient(180deg, #f1f8e9 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #c8e6c9;
    margin: 3rem 0;
}

.lexikon-section h2 {
    text-align: center;
    color: #1B5E20;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    border-bottom: none;
}

.lexikon-intro {
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.lexikon-intro strong {
    color: #2E7D32;
}

/* Das Grid */
.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
}

/* Die Karten */
.alphabet-card {
    position: relative;
    background: white;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    padding: 1.5rem 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Dezenter grüner Schein oben */
.alphabet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #66bb6a, #2E7D32);
    opacity: 0;
    transition: opacity 0.3s;
}

.alphabet-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #4CAF50;
    box-shadow: 0 12px 28px rgba(76, 175, 80, 0.25);
}

.alphabet-card:hover::before {
    opacity: 1;
}

/* Das Buchstaben-Badge */
.letter-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66bb6a 0%, #2E7D32 100%);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35),
                inset 0 -3px 6px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.alphabet-card:hover .letter-badge {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.5),
                inset 0 -3px 6px rgba(0,0,0,0.15);
}

/* Vorschau-Text */
.card-preview {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.45;
    min-height: 2.9em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arten-Zähler */
.card-count {
    background: #e8f5e9;
    color: #2E7D32;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.alphabet-card:hover .card-count {
    background: #2E7D32;
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .alphabet-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .alphabet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }
    
    .letter-badge {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    
    .lexikon-section {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 380px) {
    .alphabet-grid {
        grid-template-columns: 1fr;
    }
}
