/* ========================================= */
/*  Tabelle                                   */
/* ========================================= */

.fisch-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 16px;
}

.fisch-tabelle th {
    background: var(--blue);
    color: white;
    padding: 10px;
    text-align: left;
}

.fisch-tabelle td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

.fisch-tabelle tr:nth-child(even) {
    background: #f5f5f5;
}

.fisch-tabelle tr:hover {
    background: #e0ecff;
}

.tabelle-hinweis {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Tabelle Desktop 80% + zentriert */
@media (min-width: 769px) {
    .fisch-tabelle {
        width: 80%;
        margin: 0 auto;
    }
}



/* ========================================= */
/*  Intro-Bereich (Text + Bild 66/33)         */
/* ========================================= */

.intro-flex {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    margin-bottom: 0px;
}

.intro-text {
    flex: 2; /* 66% */
}

.intro-img {
    flex: 1; /* 33% */
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}


/* ========================================= */
/*  Gesetzliche Regelungen (50/50)            */
/* ========================================= */

.gesetz-2col {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.gesetz-col {
    flex: 1; /* 50% */
}


/* ========================================= */
/*  Responsive                                */
/* ========================================= */

@media (max-width: 768px) {

    /* Intro untereinander */
    .intro-flex {
        flex-direction: column;
    }

    .intro-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Gesetzliche Regelungen untereinander */
    .gesetz-2col {
        flex-direction: column;
    }
}


.block-33 {
    display: flex;
    gap: 20px;
    align-items: center; /* Bild wird vertikal mittig */
}

.col33 {
    flex: 1;
}

.col33 img {
    display: block;
    margin: 0 auto; /* horizontal zentriert */
    max-width: 100%;
    height: auto;
}   

.col33 .gesetz-img {
    max-width: 150px !important;
    height: auto;
    display: block;
    margin: 0 auto;
}
    