body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
/*
 * Basis-Gestaltung des Venne-Forums.
 *
 * Bewusst minimal und farblich zurueckhaltend: das Package soll sich in
 * bestehende Kundenlayouts einfuegen, nicht sie ueberschreiben. Es werden nur
 * eigene Klassen gestylt, keine Elementselektoren ausserhalb des Forums.
 *
 * Farben stammen aus currentColor und wenigen neutralen Grauwerten, damit das
 * Forum in hellen wie dunklen Layouts brauchbar aussieht.
 */

.venne-forum {
    --venne-forum-border: color-mix(in srgb, currentColor 20%, transparent);
    --venne-forum-muted: color-mix(in srgb, currentColor 65%, transparent);
    --venne-forum-surface: color-mix(in srgb, currentColor 4%, transparent);
    --venne-forum-gap: 1rem;
}

/* ── Kopf ──────────────────────────────────────────────────────────────── */

.venne-forum__header {
    margin-bottom: var(--venne-forum-gap);
}

.venne-forum__description {
    color: var(--venne-forum-muted);
}

.venne-forum__actions {
    margin: var(--venne-forum-gap) 0;
}

/* ── Themenliste ───────────────────────────────────────────────────────── */

.venne-forum__topics {
    width: 100%;
    border-collapse: collapse;
}

.venne-forum__caption {
    text-align: left;
    padding-bottom: 0.5rem;
    color: var(--venne-forum-muted);
}

.venne-forum__topics th,
.venne-forum__topics td {
    text-align: left;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--venne-forum-border);
    vertical-align: top;
}

.venne-forum__topics th {
    font-weight: 600;
}

.venne-forum__count {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.venne-forum__meta {
    font-size: 0.875em;
    color: var(--venne-forum-muted);
}

.venne-forum__topic--locked .venne-forum__topic-title > a {
    opacity: 0.75;
}

.venne-forum__badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.05em 0.45em;
    border: 1px solid var(--venne-forum-border);
    border-radius: 0.75em;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Auf schmalen Bildschirmen ist die Tabelle zu breit: die Nebenspalten
   entfallen, der Thementitel bleibt. */
@media (max-width: 40rem) {
    .venne-forum__topics th:nth-child(2),
    .venne-forum__topics td:nth-child(2),
    .venne-forum__topics th:nth-child(3),
    .venne-forum__topics td:nth-child(3) {
        display: none;
    }
}

/* ── Beitraege ─────────────────────────────────────────────────────────── */

.venne-forum__posts {
    list-style: none;
    margin: var(--venne-forum-gap) 0;
    padding: 0;
}

.venne-forum__post {
    padding: var(--venne-forum-gap);
    margin-bottom: var(--venne-forum-gap);
    border: 1px solid var(--venne-forum-border);
    border-radius: 4px;
    background: var(--venne-forum-surface);
}

/* Sprungziel nach dem Absenden nicht unter einer fixierten Kopfzeile
   verstecken. */
.venne-forum__post:target {
    scroll-margin-top: 5rem;
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.venne-forum__author {
    font-weight: 600;
    margin-right: 0.5rem;
}

.venne-forum__content {
    overflow-wrap: anywhere;
}

.venne-forum__content > p:last-child {
    margin-bottom: 0;
}

.venne-forum__edited,
.venne-forum__post-footer {
    font-size: 0.875em;
    color: var(--venne-forum-muted);
}

/* ── Formulare ─────────────────────────────────────────────────────────── */

.venne-forum__form {
    margin-top: calc(var(--venne-forum-gap) * 1.5);
}

.venne-forum__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: var(--venne-forum-gap);
}

.venne-forum__field--checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.venne-forum__field label {
    font-weight: 600;
}

.venne-forum__field--checkbox label {
    font-weight: 400;
}

.venne-forum__field input[type='text'],
.venne-forum__field textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--venne-forum-border);
    border-radius: 3px;
    font: inherit;
    color: inherit;
    background: transparent;
}

.venne-forum__hint {
    font-size: 0.8125em;
    color: var(--venne-forum-muted);
}

.venne-forum__submit {
    display: flex;
    align-items: center;
    gap: var(--venne-forum-gap);
}

/* Sichtbarer Fokus ist Pflicht, nicht Geschmackssache. */
.venne-forum :is(a, button, input, textarea):focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* ── Meldungen ─────────────────────────────────────────────────────────── */

.venne-forum__error,
.venne-forum__notice,
.venne-forum__empty {
    padding: 0.75rem var(--venne-forum-gap);
    margin: var(--venne-forum-gap) 0;
    border: 1px solid var(--venne-forum-border);
    border-radius: 4px;
    background: var(--venne-forum-surface);
}

.venne-forum__error ul {
    margin: 0;
    padding-left: 1.2rem;
}

.venne-forum__breadcrumb {
    font-size: 0.875em;
    margin-bottom: 0.5rem;
}

.venne-forum__subscription {
    margin: var(--venne-forum-gap) 0;
}

