{"id":2792,"date":"2021-09-15T12:52:55","date_gmt":"2021-09-15T10:52:55","guid":{"rendered":"https:\/\/www.asvschrems.com\/fussball\/?page_id=2792"},"modified":"2025-10-05T20:04:16","modified_gmt":"2025-10-05T18:04:16","slug":"km2","status":"publish","type":"page","link":"https:\/\/www.asvschrems.com\/fussball\/km2\/","title":{"rendered":"KM-2 (2.KL)"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text css_animation=&#8220;fadeIn&#8220; css=&#8220;&#8220;]<\/p>\n<h2 style=\"text-align: center;\">Kampfmannschaft II &#8211; 2. Klasse Waldviertel Zentral<\/h2>\n<div id=\"asvsc_69d2e3f5ea2c7\"\n         class=\"spielcenter-wrapper\"\n         data-team=\"KM-II\"\n         data-show-last=\"1\"\n         data-show-next=\"1\"\n         data-show-table=\"1\">\n\n                <!-- Letztes Spiel -->\n        <a id=\"asvsc_69d2e3f5ea2c7-last-link\" class=\"spielcenter-box last-game\" target=\"_blank\">\n            <div class=\"sc-title\">LETZTES SPIEL \u203a<\/div>\n            <div id=\"asvsc_69d2e3f5ea2c7-last\" class=\"game-card\"><\/div>\n        <\/a>\n        \n                <!-- N\u00e4chstes Spiel -->\n        <a id=\"asvsc_69d2e3f5ea2c7-next-link\" class=\"spielcenter-box next-game\" target=\"_blank\">\n            <div class=\"sc-title-next\">N\u00c4CHSTES SPIEL \u203a<\/div>\n            <div id=\"asvsc_69d2e3f5ea2c7-next\" class=\"game-card\"><\/div>\n            <div id=\"asvsc_69d2e3f5ea2c7-countdown\" class=\"countdown\"><\/div>\n        <\/a>\n        \n                <!-- Tabelle -->\n        <a href=\"https:\/\/www.asvschrems.com\/fussball\/km2\/\" class=\"spielcenter-box table\">\n            <div class=\"sc-title\">TABELLE \u203a<\/div>\n            <div id=\"asvsc_69d2e3f5ea2c7-table\"><\/div>\n        <\/a>\n            <\/div>\n\n    <script>\n    (function() {\n        const root = document.getElementById('asvsc_69d2e3f5ea2c7');\n        if (!root) return;\n\n        const team = root.dataset.team;\n        const SHOW_LAST  = root.dataset.showLast  === '1';\n        const SHOW_NEXT  = root.dataset.showNext  === '1';\n        const SHOW_TABLE = root.dataset.showTable === '1';\n\n        const els = {\n            lastBox: root.querySelector('#asvsc_69d2e3f5ea2c7-last'),\n            lastLink: root.querySelector('#asvsc_69d2e3f5ea2c7-last-link'),\n            nextBox: root.querySelector('#asvsc_69d2e3f5ea2c7-next'),\n            nextLink: root.querySelector('#asvsc_69d2e3f5ea2c7-next-link'),\n            countdown: root.querySelector('#asvsc_69d2e3f5ea2c7-countdown'),\n            tableBox: root.querySelector('#asvsc_69d2e3f5ea2c7-table'),\n        };\n\n        const base = \"https:\/\/www.asvschrems.com\/fussball\/oefb-data\/\";\n        const gamesUrl = `${base}${team}_games_short.json`;\n        const tableUrl = `${base}${team}_Tabelle.json`;\n\n        function formatDateAT(dateStr, timeStr) {\n            const days = [\"So.\", \"Mo.\", \"Di.\", \"Mi.\", \"Do.\", \"Fr.\", \"Sa.\"];\n            const d = new Date(dateStr + \"T\" + (timeStr || \"00:00\") + \":00\");\n            const wd = days[d.getDay()];\n            const day = d.getDate();\n            const month = d.getMonth() + 1;\n            const year = d.getFullYear();\n            return `${wd} ${day}.${month}.${year} ${timeStr || \"\"} Uhr`;\n        }\n\n        async function loadGames() {\n            try {\n                const resp = await fetch(gamesUrl, { cache: 'no-store' });\n                if (!resp.ok) return;\n                const data = await resp.json();\n\n                \/\/ Letztes Spiel\n                if (SHOW_LAST && data?.last && els.lastBox && els.lastLink) {\n                    const l = data.last;\n                    els.lastBox.innerHTML = `\n                        <div class=\"round left\">${l.round || \"\"}<\/div>\n                        <div class=\"teams-last\">\n                            <img decoding=\"async\" src=\"${l.home_logo}\" alt=\"${l.home}\">\n                            <span class=\"score\">${l.score_home ?? ''} : ${l.score_away ?? ''}<\/span>\n                            <img decoding=\"async\" src=\"${l.away_logo}\" alt=\"${l.away}\">\n                        <\/div>\n                        <div class=\"meta\">\n                            <div class=\"date\">${formatDateAT(l.date_local, l.time_local)}<\/div>\n                            <div class=\"venue\">${l.venue || \"\"}<\/div>\n                        <\/div>`;\n                    if (l.url) els.lastLink.href = l.url;\n                }\n\n                \/\/ N\u00e4chstes Spiel\n                if (SHOW_NEXT && data?.next && els.nextBox && els.nextLink) {\n                    const n = data.next;\n                    els.nextBox.innerHTML = `\n                        <div class=\"round left\">${n.round || \"\"}<\/div>\n                        <div class=\"teams\">\n                            <img decoding=\"async\" src=\"${n.home_logo}\" alt=\"${n.home}\">\n                            <span class=\"vs\">vs<\/span>\n                            <img decoding=\"async\" src=\"${n.away_logo}\" alt=\"${n.away}\">\n                        <\/div>\n                        <div class=\"team-names\"><strong>${n.home}<\/strong> - <strong>${n.away}<\/strong><\/div>\n                        <div class=\"meta\">\n                            <div class=\"date\">${formatDateAT(n.date_local, n.time_local)}<\/div>\n                            <div class=\"venue\">${n.venue || \"\"}<\/div>\n                        <\/div>`;\n                    if (n.url) els.nextLink.href = n.url;\n\n                    \/\/ Countdown\n                    if (els.countdown) {\n                        const target = new Date(`${n.date_local}T${n.time_local || '00:00'}:00`).getTime();\n                        const tick = () => {\n                            const diff = target - Date.now();\n                            if (diff <= 0) {\n                                els.countdown.innerHTML = \"\u26bd Spiel l\u00e4uft oder beendet\";\n                                return;\n                            }\n                            const d = Math.floor(diff \/ 86400000);\n                            const h = Math.floor((diff % 86400000) \/ 3600000);\n                            const m = Math.floor((diff % 3600000) \/ 60000);\n                            const s = Math.floor((diff % 60000) \/ 1000);\n                            const pad = (x) => x.toString().padStart(2, '0');\n                            els.countdown.innerHTML = `\n                                <div class=\"count-box\"><span>${d}<\/span><small>Tage<\/small><\/div>\n                                <div class=\"count-box\"><span>${pad(h)}<\/span><small>Std<\/small><\/div>\n                                <div class=\"count-box\"><span>${pad(m)}<\/span><small>Min<\/small><\/div>\n                                <div class=\"count-box\"><span>${pad(s)}<\/span><small>Sek<\/small><\/div>`;\n                        };\n                        tick();\n                        setInterval(tick, 1000);\n                    }\n                }\n            } catch (e) {\n                console.error(\"Fehler games_short:\", e);\n            }\n        }\n\n        async function loadTable() {\n            if (!SHOW_TABLE || !els.tableBox) return;\n            try {\n                const resp = await fetch(tableUrl, { cache: 'no-store' });\n                if (!resp.ok) return;\n                const tabData = await resp.json();\n                if (!tabData?.rows) return;\n\n                const rows = tabData.rows;\n                const idx = rows.findIndex(r => (r.team || \"\").toLowerCase().includes(\"schrems\"));\n                if (idx === -1) return;\n\n                let focus = [];\n                if (idx === 0) focus = rows.slice(0, 3);\n                else if (idx === rows.length - 1) focus = rows.slice(-3);\n                else focus = rows.slice(idx - 1, idx + 2);\n\n                els.tableBox.innerHTML = `\n                    <table class=\"mini-table\">\n                        <thead>\n                            <tr><th>#<\/th><th>Team<\/th><th>S\/U\/N<\/th><th>Diff<\/th><th>Pkt<\/th><\/tr>\n                        <\/thead>\n                        <tbody>\n                            ${focus.map(r => `\n                              <tr class=\"${(r.team || '').toLowerCase().includes('schrems') ? 'highlight' : ''}\">\n                                <td>${r.rank ?? \"\"}<\/td>\n                                <td class=\"team-cell\">${r.logo_url ? `<img decoding=\"async\" src=\"${r.logo_url}\" alt=\"${r.team}\">` : \"\"}<\/td>\n                                <td>${r.wins ?? 0}\/${r.draws ?? 0}\/${r.losses ?? 0}<\/td>\n                                <td>${r.goal_diff ?? 0}<\/td>\n                                <td class=\"points\">${r.points ?? 0}<\/td>\n                              <\/tr>`).join(\"\")}\n                        <\/tbody>\n                    <\/table>`;\n            } catch (e) {\n                console.error(\"Fehler Tabelle:\", e);\n            }\n        }\n\n        \/\/ Laden je nach Flags\n        if (SHOW_LAST || SHOW_NEXT) loadGames();\n        if (SHOW_TABLE) loadTable();\n    })();\n    <\/script>\n\n    <style>\n    .spielcenter-wrapper {\n        display: flex;\n        gap: 20px;\n        justify-content: space-between;\n        margin: 30px 0px;\n        max-width: 1200px;\n        align-items: center\n    }\n    .spielcenter-box {\n        background: #fff;\n        box-shadow: 0 4px 12px rgba(0,0,0,0.06);\n        padding: 20px;\n        text-decoration: none;\n        color: inherit;\n        transition: all 0.25s ease-in-out;\n        display: flex;\n        flex-direction: column;\n    }\n    .spielcenter-box:hover {\n        transform: scale(1.015);\n        box-shadow: 0 12px 26px rgba(0,0,0,.10);\n        border-color:#dbe2ea;\n    }\n    .spielcenter-box.next-game { min-width: 400px; }\n    .spielcenter-box.last-game { height: fit-content; width: 170px; }\n    .spielcenter-box.table    { height: fit-content; width: 250px; }\n\n    .sc-title { font-size: .85rem; font-weight: 700; color: #ef4444; text-transform: uppercase; letter-spacing: .5px; }\n    .sc-title-next { font-size: 1.5rem; font-weight: 1000; color: #ef4444; margin-bottom: 15px; text-transform: uppercase; letter-spacing: .5px; }\n    .round.left { font-size: .75rem; margin-bottom: 10px; text-align: left; color: #666; line-height: normal; }\n\n    .teams, .teams-last {\n        display: flex; justify-content: center; align-items: center; gap: 16px;\n        font-weight: 700; margin: 15px 0;\n    }\n    .teams { font-size: 1.6rem; }\n    .teams img { width: 70px; height: 70px; object-fit: contain; }\n    .teams-last { font-size: 1.6rem; }\n    .teams-last img { width: 40px; height: 40px; object-fit: contain; }\n\n    .score { font-size: 1.6rem; font-weight: 500; color: #111; }\n    .vs    { font-size: 1.6rem; font-weight: 600; color: #374151; }\n    .team-names { text-align: center; font-size: 1rem; font-weight: 700; margin: 10px 0 15px 0; }\n\n    .meta { font-size: .9rem; color: #444; margin-top: 10px; line-height: 1.5; }\n    .meta div { display: flex; align-items: center; gap: 6px; margin-top: 4px; position: relative; padding-left: 14px; }\n    .meta div::before { content: \"\\2022\"; position: absolute; left: 0; top: .25em; font-weight: 700; color: #ef4444; line-height: 1; }\n\n    #asvsc_69d2e3f5ea2c7-countdown { margin-top: auto; }\n    .countdown { display: flex; justify-content: space-around; margin-top: 20px; background: linear-gradient(90deg, #f9fafb, #f3f4f6);\n        width: calc(100% + 40px); margin-left: -20px; margin-right: -20px; border-radius: 0 0 0 0; padding: 14px 0; }\n    .count-box { text-align: center; min-width: 60px; }\n    .count-box span { display: block; font-size: 2rem; font-weight: 700; color: #111; }\n    .count-box small { font-size: .8rem; color: #666; text-transform: uppercase; letter-spacing: .5px; }\n\n    .mini-table { width: 100%; border-collapse: collapse; font-size: .9rem; }\n    .mini-table thead { background: #fffff; line-height: 8px; margin: 0 -20px; }\n    .mini-table th { text-align: center; font-weight: 600; font-size: .75rem; padding: 8px; color: #444; text-transform: uppercase; border: none !important; }\n    .mini-table td { padding: 8px; text-align: center; border: none !important; }\n    .mini-table td.team-cell img { width: 46px; height: 46px; object-fit: contain; }\n    .mini-table td.points { font-weight: 700; color: #ef4444; }\n    .mini-table tr.highlight { background: #f3f4f6; font-weight: 600; }\n\n    .spielcenter-box.table { overflow: hidden; }\n    .spielcenter-box.table .mini-table { width: calc(100% + 40px); margin-left: -20px; margin-right: -20px; border-collapse: collapse; table-layout: fixed; }\n    .spielcenter-box.table .mini-table th, .spielcenter-box.table .mini-table td { padding: 10px 14px; }\n    .mini-table tr.highlight:hover { background: #e5e7eb; }\n\n    @media (max-width: 1072px) {\n        .spielcenter-wrapper { flex-direction: column; }\n        .spielcenter-box.last-game, .spielcenter-box.table { display: none; }\n        .spielcenter-box.next-game { flex: 1; width: 90%; justify-content: center; min-width: 0; }\n    }\n\t\t\t\t\t\t\t\t\t\n.spielcenter-wrapper {\n  display: flex;\n  flex-wrap: wrap;              \/* Damit sich Boxen umbrechen *\/\n  gap: 20px;\n  justify-content: center;      \/* Zentriert alle vorhandenen Boxen *\/\n  \/*align-items: flex-start;*\/\n  margin: 30px 0;\n  max-width: 1200px;\n}\n\n.spielcenter-box {\n  flex: 1 1 250px;              \/* Flexible Breite, mindestens 250px *\/\n  max-width: 400px;\n  background: #fff;\n  box-shadow: 0 4px 12px rgba(0,0,0,0.06);\n  padding: 20px;\n  text-decoration: none;\n  color: inherit;\n  transition: all 0.25s ease-in-out;\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\n\n.spielcenter-box.next-game { min-width: 300px; }\n.spielcenter-box.last-game { width: 200px; }\n.spielcenter-box.table     { width: 250px; }\n\n.spielcenter-wrapper .spielcenter-box:only-child {\n  max-width: 600px;             \/* Wenn nur eine Box vorhanden ist \u2192 breiter *\/\n}\n\n    <\/style>\n    [\/vc_column_text][vc_single_image image=&#8220;5400&#8243; img_size=&#8220;large&#8220; alignment=&#8220;center&#8220; css=&#8220;&#8220;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8220;1\/2&#8243;][vc_column_text css=&#8220;&#8220;]    <style>\n      .oefb-matches {\n        --accent: #0ea5e9;\n        --ring:#e5e7eb; --muted:#64748b; --bg:#fff; --shadow:0 6px 18px rgba(0,0,0,.06);\n        \/* Ergebnisfarben \u2013 hier bequem \u00e4nderbar oder via Shortcode-Attributen *\/\n        --score-win:  #22c55e;\n        --score-loss: #ef4444;\n        --score-draw: #9ca3af;\n        \/*margin:1rem 0;*\/\n      }\n      .oefb-m-list { display:grid; gap:12px; }\n      .oefb-m-card { border-top: 1px solid #e7e7e7;\n        padding:12px; display:grid; grid-template-columns: 1fr; gap:10px;\n      }\n      .oefb-m-head {\n        display:grid; grid-template-columns: 1fr auto; align-items:center;\n      }\n      .oefb-m-datetime {\n        display:flex; align-items:center; gap:8px; font-variant-numeric:tabular-nums; font-weight:700;\n      }\n      .oefb-m-datetime .muted { color:var(--muted); font-weight:600; }\n      .oefb-m-comp {\n        display:inline-block; font-size:12px; padding:2px 8px; border-radius:999px;\n        \n        white-space:nowrap;\n      }\n\t\/*.oefb-m-comp {\n        display:inline-block; font-size:12px; padding:2px 8px; border-radius:999px;\n        background: color-mix(in srgb, var(--accent) 14%, white);\n        color:#0f172a; border:1px solid color-mix(in srgb, var(--accent) 30%, #e5e7eb);\n        white-space:nowrap;\n      }\t\n\t*\/\t\n      .oefb-m-teams { display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:8px; }\n      .oefb-m-team { display:flex; align-items:center; gap:8px; min-width:0; }\n      .oefb-m-team.right { justify-content:flex-end; }\n      .oefb-m-logo { width:32px; height:32px; object-fit:cover; border-radius:6px; background:#f3f4f6; border:1px solid var(--ring); }\n      .oefb-m-name { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }\n      .oefb-m-score {\n        font-weight:800; font-variant-numeric:tabular-nums; min-width:46px; text-align:center;\n        padding:2px 8px; border-radius:8px; background:#f8fafc; border:1px solid var(--ring);\n      }\n      .oefb-m-score.win  { background:var(--score-win);  color:#fff; border-color:var(--score-win); }\n      .oefb-m-score.loss { background:var(--score-loss); color:#fff; border-color:var(--score-loss); }\n      .oefb-m-score.draw { background:var(--score-draw); color:#fff; border-color:var(--score-draw); }\n      .oefb-m-halftime { font-size:12px; color:var(--muted); text-align:center; margin-top:2px; }\n      .oefb-m-link { text-align:right; }\n      .oefb-m-link a { text-decoration:none; color:var(--accent); font-weight:600; }\n      .oefb-m-link a:hover { text-decoration:underline; }\n\n      @media (max-width:640px){\n        .oefb-m-teams { grid-template-columns: 1fr auto 1fr; }\n      }\n    <\/style>\n<div class=\"oefb-section-title\">Spiele<\/div>\n    <div class=\"oefb-matches\">\n\t\t\n      <div class=\"oefb-m-list\">\n                <div class=\"oefb-m-card\">\n          <div class=\"oefb-m-head\">\n            <div class=\"oefb-m-datetime\">\n              <span class=\"icon\"><svg viewBox=\"0 0 24 24\" width=\"14\" height=\"14\" aria-hidden=\"true\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\"\/><path d=\"M12 6v6l4 2\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\"\/><\/svg><\/span>\n              <span>Sa., 21.03.2026<\/span>\n              <span class=\"muted\">\u2022 16:00<\/span>            <\/div>\n            <div class=\"oefb-m-comp\">Liga<\/div>          <\/div>\n\n          <div class=\"oefb-m-teams\">\n            <div class=\"oefb-m-team\">\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_a069acc031da30a200ee-1,0-50x50.png\" alt=\"Bad Gro\u00dfpertholz\">              <div class=\"oefb-m-name\">Bad Gro\u00dfpertholz<\/div>\n            <\/div>\n\n            <div class=\"oefb-m-score loss\">\n              3:0            <\/div>\n\n            <div class=\"oefb-m-team right\">\n              <div class=\"oefb-m-name\">Schrems II<\/div>\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"Schrems II\">            <\/div>\n          <\/div>\n\n                      <div class=\"oefb-m-halftime\">(0:0)\t\t\t\n\t\t\t<\/div>\n          \t\t\t<div class=\"oefb-m-link\">\n                          <a href=\"https:\/\/vereine.oefb.at\/asvschrems\/Spielbericht\/?Bad-Grosspertholz-vs-Schrems-II&#038;:s=3852907\">Details<\/a>\n                      <\/div>\n        <\/div>\n                <div class=\"oefb-m-card\">\n          <div class=\"oefb-m-head\">\n            <div class=\"oefb-m-datetime\">\n              <span class=\"icon\"><svg viewBox=\"0 0 24 24\" width=\"14\" height=\"14\" aria-hidden=\"true\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\"\/><path d=\"M12 6v6l4 2\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\"\/><\/svg><\/span>\n              <span>Sa., 28.03.2026<\/span>\n              <span class=\"muted\">\u2022 16:30<\/span>            <\/div>\n            <div class=\"oefb-m-comp\">Liga<\/div>          <\/div>\n\n          <div class=\"oefb-m-teams\">\n            <div class=\"oefb-m-team\">\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"Schrems II\">              <div class=\"oefb-m-name\">Schrems II<\/div>\n            <\/div>\n\n            <div class=\"oefb-m-score loss\">\n              1:4            <\/div>\n\n            <div class=\"oefb-m-team right\">\n              <div class=\"oefb-m-name\">Rastenfeld<\/div>\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_6d0a2caf6ba24b20a18c-1,0-50x50.png\" alt=\"Rastenfeld\">            <\/div>\n          <\/div>\n\n                      <div class=\"oefb-m-halftime\">(0:1)\t\t\t\n\t\t\t<\/div>\n          \t\t\t<div class=\"oefb-m-link\">\n                          <a href=\"https:\/\/vereine.oefb.at\/asvschrems\/Spielbericht\/?Schrems-II-vs-Rastenfeld&#038;:s=3852894\">Details<\/a>\n                      <\/div>\n        <\/div>\n                <div class=\"oefb-m-card\">\n          <div class=\"oefb-m-head\">\n            <div class=\"oefb-m-datetime\">\n              <span class=\"icon\"><svg viewBox=\"0 0 24 24\" width=\"14\" height=\"14\" aria-hidden=\"true\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\"\/><path d=\"M12 6v6l4 2\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\"\/><\/svg><\/span>\n              <span>Sa., 04.04.2026<\/span>\n              <span class=\"muted\">\u2022 16:30<\/span>            <\/div>\n            <div class=\"oefb-m-comp\">Liga<\/div>          <\/div>\n\n          <div class=\"oefb-m-teams\">\n            <div class=\"oefb-m-team\">\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_4cfa0e65d273f7750295-1,0-50x50.png\" alt=\"Pfaffenschlag\">              <div class=\"oefb-m-name\">Pfaffenschlag<\/div>\n            <\/div>\n\n            <div class=\"oefb-m-score loss\">\n              9:0            <\/div>\n\n            <div class=\"oefb-m-team right\">\n              <div class=\"oefb-m-name\">Schrems II<\/div>\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"Schrems II\">            <\/div>\n          <\/div>\n\n                      <div class=\"oefb-m-halftime\">(1:0)\t\t\t\n\t\t\t<\/div>\n          \t\t\t<div class=\"oefb-m-link\">\n                          <a href=\"https:\/\/vereine.oefb.at\/asvschrems\/Spielbericht\/?Pfaffenschlag-vs-Schrems-II&#038;:s=3852918\">Details<\/a>\n                      <\/div>\n        <\/div>\n                <div class=\"oefb-m-card\">\n          <div class=\"oefb-m-head\">\n            <div class=\"oefb-m-datetime\">\n              <span class=\"icon\"><svg viewBox=\"0 0 24 24\" width=\"14\" height=\"14\" aria-hidden=\"true\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\"\/><path d=\"M12 6v6l4 2\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\"\/><\/svg><\/span>\n              <span>Fr., 10.04.2026<\/span>\n              <span class=\"muted\">\u2022 19:00<\/span>            <\/div>\n            <div class=\"oefb-m-comp\">Liga<\/div>          <\/div>\n\n          <div class=\"oefb-m-teams\">\n            <div class=\"oefb-m-team\">\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"Schrems II\">              <div class=\"oefb-m-name\">Schrems II<\/div>\n            <\/div>\n\n            <div class=\"oefb-m-score \">\n              &nbsp;\u2013&nbsp;            <\/div>\n\n            <div class=\"oefb-m-team right\">\n              <div class=\"oefb-m-name\">Windigsteig<\/div>\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_ed3fec2be3e78908b0df-1,0-50x50.png\" alt=\"Windigsteig\">            <\/div>\n          <\/div>\n\n          \t\t\t<div class=\"oefb-m-link\">\n                          <a href=\"https:\/\/vereine.oefb.at\/asvschrems\/Spielbericht\/?Schrems-II-vs-Windigsteig&#038;:s=3852772\">Details<\/a>\n                      <\/div>\n        <\/div>\n                <div class=\"oefb-m-card\">\n          <div class=\"oefb-m-head\">\n            <div class=\"oefb-m-datetime\">\n              <span class=\"icon\"><svg viewBox=\"0 0 24 24\" width=\"14\" height=\"14\" aria-hidden=\"true\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\"\/><path d=\"M12 6v6l4 2\" stroke=\"currentColor\" stroke-width=\"2\" fill=\"none\" stroke-linecap=\"round\"\/><\/svg><\/span>\n              <span>So., 19.04.2026<\/span>\n              <span class=\"muted\">\u2022 11:30<\/span>            <\/div>\n            <div class=\"oefb-m-comp\">Liga<\/div>          <\/div>\n\n          <div class=\"oefb-m-teams\">\n            <div class=\"oefb-m-team\">\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_2647aaef28f08390f32c-1,0-50x50.png\" alt=\"Eibenstein\">              <div class=\"oefb-m-name\">Eibenstein<\/div>\n            <\/div>\n\n            <div class=\"oefb-m-score \">\n              &nbsp;\u2013&nbsp;            <\/div>\n\n            <div class=\"oefb-m-team right\">\n              <div class=\"oefb-m-name\">Schrems II<\/div>\n              <img decoding=\"async\" class=\"oefb-m-logo\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"Schrems II\">            <\/div>\n          <\/div>\n\n          \t\t\t<div class=\"oefb-m-link\">\n                          <a href=\"https:\/\/vereine.oefb.at\/asvschrems\/Spielbericht\/?Eibenstein-vs-Schrems-II&#038;:s=3852721\">Details<\/a>\n                      <\/div>\n        <\/div>\n              <\/div>\n    <\/div>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><a style=\"margin-top: 10px; padding: 8px 8px; border-radius: 8px; background: #f8fafc; border: 1px solid #e5e7eb; color: #85868c; font-weight: 800; text-decoration: none;\" href=\"https:\/\/www.asvschrems.com\/fussball\/km2\/spielplan-km2\/\">kompletten Spielplan anzeigen<\/a><\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8220;1\/2&#8243;][vc_column_text css=&#8220;.vc_custom_1755700092330{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8220;]    <style>\n      \/* Wrapper: Standard + Full-Bleed auf Mobile, damit rechts kein Platz verschenkt wird *\/\n      .oefb-table-wrap { width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; }\n\n      \/* Full-Bleed nur auf kleinen Screens (passt die Tabelle an den Viewport an) *\/\n      @media (max-width: 700px){\n        .oefb-table-wrap {\n          \/* Nimmt horizontal den vollen Viewport ein, unabh\u00e4ngig vom Theme-Innenabstand *\/\n          margin-left: calc(50% - 50vw);\n          margin-right: calc(50% - 50vw);\n          padding-left: max(12px, env(safe-area-inset-left));\n          padding-right: max(12px, env(safe-area-inset-right));\n        }\n      }\n\n      .oefb-table{\n        width:100%;\n        border-collapse:collapse;\n        font-size:14px;\n        table-layout:fixed; \/* Desktop: verhindert Aufbl\u00e4hen durch sehr lange Namen *\/\n      }\n\n      \/* Richtwerte f\u00fcr Desktop\/Tablet \u2013 auf Mobile schalten wir sie ab *\/\n      .oefb-table col.rank   { width: 3.2ch; }\n      .oefb-table col.team   { width: auto; }\n      .oefb-table col.played { width: 4.4ch; }\n      .oefb-table col.s      { width: 3.6ch; }\n      .oefb-table col.u      { width: 3.6ch; }\n      .oefb-table col.n      { width: 3.6ch; }\n      .oefb-table col.gd     { width: 4.6ch; }\n      .oefb-table col.diff   { width: 4.6ch; }\n      .oefb-table col.pts    { width: 4.8ch; }\n\n      .oefb-table th,\n      .oefb-table td{\n        padding:8px 10px;\n        border-bottom:1px solid #e7e7e7;\n        text-align:center;\n        white-space:nowrap; \/* Standard: Stat-Zellen einzeilig *\/\n      }\n\n      \/* Teamspalte: darf umbrechen *\/\n      .oefb-table th:nth-child(2),\n      .oefb-table td:nth-child(2){\n        text-align:left;\n        white-space:normal;\n      }\n\n      \/* Teamzelle: Bild + Name im Grid *\/\n      .oefb-table .team-cell{\n        display:grid;\n        grid-template-columns: 20px auto;\n        align-items:center;\n        gap:8px;\n        min-width:0;\n      }\n      .oefb-table .team-cell img{\n        width:20px; height:20px; object-fit:contain; border-radius:3px; flex:0 0 auto;\n      }\n      .oefb-table .team-name{\n        min-width:0;\n        line-height:1.25;\n        overflow-wrap:normal;   \/* weniger aggressiv als anywhere *\/\n        word-break:normal;\n        \/* Auf zwei Zeilen begrenzen + Ellipsis, damit die Zeile nicht zu hoch wird *\/\n        display:-webkit-box;\n        -webkit-line-clamp:2;\n        -webkit-box-orient:vertical;\n        overflow:hidden;\n      }\n\n      \/* Kleinere Screens: kompakter + flexible Breite *\/\n      @media (max-width:700px){\n        .oefb-table{\n          table-layout:auto;    \/* l\u00e4sst Inhalt nat\u00fcrlicher flie\u00dfen *\/\n        }\n        .oefb-table colgroup{ display:none; } \/* starre Breiten aus *\/\n        .oefb-table th,\n        .oefb-table td{ padding:7px 8px; font-size:13px; }\n        .oefb-table .team-cell{ grid-template-columns: 18px auto; gap:6px; }\n        .oefb-table .team-cell img{ width:18px; height:18px; }\n\n        \/* wie gehabt ein paar Spalten ausblenden *\/\n        .oefb-table th:nth-child(4),\n        .oefb-table td:nth-child(4),\n        .oefb-table th:nth-child(5),\n        .oefb-table td:nth-child(5),\n        .oefb-table th:nth-child(6),\n        .oefb-table td:nth-child(6),\n        .oefb-table th:nth-child(8),\n        .oefb-table td:nth-child(8){ display:none; }\n      }\n\n      \/* Optional: Punkte sichtbar priorisieren *\/\n      .oefb-table td:last-child{ font-weight:600; }\n    <\/style>\n    <div class=\"oefb-table-wrap\"><table class=\"oefb-table\"><colgroup><col class=\"rank\"><col class=\"team\"><col class=\"played\"><col class=\"s\"><col class=\"u\"><col class=\"n\"><col class=\"gd\"><col class=\"diff\"><col class=\"pts\"><\/colgroup><div class=\"oefb-section-title\">Tabelle<\/div><thead><tr><th>#<\/th><th>Team<\/th><th>Sp.<\/th><th>S<\/th><th>U<\/th><th>N<\/th><th>Torv.<\/th><th>+\/-<\/th><th>Pkt.<\/th><\/tr><\/thead><tbody><tr><td>1<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_4cfa0e65d273f7750295-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Pfaffenschlag<\/span><\/span><\/td><td>16<\/td><td>12<\/td><td>0<\/td><td>4<\/td><td>56:20<\/td><td>36<\/td><td>36<\/td><\/tr><tr><td>2<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_2647aaef28f08390f32c-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Eibenstein<\/span><\/span><\/td><td>16<\/td><td>11<\/td><td>1<\/td><td>4<\/td><td>45:31<\/td><td>14<\/td><td>34<\/td><\/tr><tr><td>3<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_a5ba4fdce47b38bfd1a3-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Arbesbach<\/span><\/span><\/td><td>16<\/td><td>10<\/td><td>1<\/td><td>5<\/td><td>36:23<\/td><td>13<\/td><td>31<\/td><\/tr><tr><td>4<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_3eb9e8c4051f756f289c-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Gro\u00df-Siegharts<\/span><\/span><\/td><td>16<\/td><td>9<\/td><td>3<\/td><td>4<\/td><td>40:32<\/td><td>8<\/td><td>30<\/td><\/tr><tr><td>5<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_02537213a92a9c7206d4-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Weitra<\/span><\/span><\/td><td>16<\/td><td>9<\/td><td>2<\/td><td>5<\/td><td>47:31<\/td><td>16<\/td><td>29<\/td><\/tr><tr><td>6<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_580d8887cd1a48c71bde-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Rappottenstein<\/span><\/span><\/td><td>16<\/td><td>8<\/td><td>2<\/td><td>6<\/td><td>39:32<\/td><td>7<\/td><td>26<\/td><\/tr><tr><td>7<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_238cc9800a56692e9824-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Zwettl II<\/span><\/span><\/td><td>16<\/td><td>7<\/td><td>4<\/td><td>5<\/td><td>34:26<\/td><td>8<\/td><td>25<\/td><\/tr><tr><td>8<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_01ce4bec4971342f39c7-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Langschlag<\/span><\/span><\/td><td>16<\/td><td>7<\/td><td>3<\/td><td>6<\/td><td>36:29<\/td><td>7<\/td><td>24<\/td><\/tr><tr><td>9<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_a069acc031da30a200ee-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Bad Gro\u00dfpertholz<\/span><\/span><\/td><td>16<\/td><td>7<\/td><td>2<\/td><td>7<\/td><td>32:37<\/td><td>-5<\/td><td>23<\/td><\/tr><tr><td>10<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_16950a44196222d97d4c-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Allentsteig<\/span><\/span><\/td><td>16<\/td><td>6<\/td><td>1<\/td><td>9<\/td><td>31:36<\/td><td>-5<\/td><td>19<\/td><\/tr><tr><td>11<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_62f401976d30140e901b-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Hoheneich<\/span><\/span><\/td><td>16<\/td><td>5<\/td><td>3<\/td><td>8<\/td><td>30:32<\/td><td>-2<\/td><td>18<\/td><\/tr><tr><td>12<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_ed3fec2be3e78908b0df-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Windigsteig<\/span><\/span><\/td><td>16<\/td><td>5<\/td><td>2<\/td><td>9<\/td><td>24:39<\/td><td>-15<\/td><td>17<\/td><\/tr><tr><td>13<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_6d0a2caf6ba24b20a18c-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Rastenfeld<\/span><\/span><\/td><td>16<\/td><td>3<\/td><td>2<\/td><td>11<\/td><td>33:53<\/td><td>-20<\/td><td>11<\/td><\/tr><tr style=\"background:#ffa2a2;\"><td>14<\/td><td><span class=\"team-cell\"><img decoding=\"async\" src=\"https:\/\/vereine.oefb.at\/vereine3\/images\/834733022602002384_749e427d896ea6702a3f-1,0-50x50.png\" alt=\"\" loading=\"lazy\"><span class=\"team-name\">Schrems II<\/span><\/span><\/td><td>16<\/td><td>0<\/td><td>0<\/td><td>16<\/td><td>5:67<\/td><td>-62<\/td><td>0<\/td><\/tr><\/tbody><\/table><\/div>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text css_animation=&#8220;none&#8220; css=&#8220;&#8220;]    <style>\n      .oefb-wrap{ --gap:16px; --ring:#e5e7eb; --shadow:0 6px 20px rgba(0,0,0,.06); margin:1rem 0; }\n\n      \/* === GRIDS === \u2013 max. 2 Spalten Desktop, mobil 1 *\/\n      .oefb-grid,\n      .oefb-staff-grid{\n        display:grid;\n        gap:var(--gap);\n        grid-template-columns: repeat(2, minmax(0, 1fr));\n      }\n      @media (max-width: 900px){\n        .oefb-grid,\n        .oefb-staff-grid{ grid-template-columns: 1fr; }\n      }\n\n      \/* Link-Wrapper um Spielerkarte *\/\n      .oefb-card-link{ display:block; text-decoration:none; color:inherit; border-radius:14px; }\n      .oefb-card-link:focus-visible{ outline: 3px solid #60a5fa; outline-offset: 3px; }\n\n      \/* === KARTEN-LAYOUT === *\/\n      .oefb-card{\n        width:100%;\n        display:grid;\n        grid-template-columns: 130px 1fr;\n        background:#fff;\n        border:1px solid var(--ring);\n        \/*border-radius:14px;*\/\n        box-shadow:var(--shadow);\n        overflow:hidden;\n        transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;\n        will-change: transform, filter;\n      }\n      .oefb-card.has-link{ cursor:pointer; }\n      .oefb-card-link:hover .oefb-card,\n      .oefb-card-link:focus-visible .oefb-card{\n        transform: scale(1.015);\n        \/*filter: blur(1px);*\/\n        box-shadow: 0 12px 26px rgba(0,0,0,.10);\n        border-color:#dbe2ea;\n      }\n\n      @media (max-width:520px){\n        .oefb-card{ grid-template-columns: 110px 1fr; }\n      }\n\n      .oefb-media{\n        grid-column:1; display:flex;\n        background:#f3f4f6;\n        border-right:1px solid var(--ring);\n      }\n      .oefb-media .oefb-img{\n        width:100%; height:100%; object-fit:cover; display:block;\n      }\n\n      .oefb-body{\n        grid-column:2;\n        padding:14px 14px 12px;\n        display:flex; flex-direction:column; gap:10px; min-width:0;\n      }\n      .oefb-head{ display:flex; align-items:flex-start; gap:12px; }\n      .oefb-name{ font-weight:700; margin:0; }\n      .oefb-pos{ color:#6b7280; font-size:.95rem; }\n      .oefb-num{ margin-left:auto; font-size:1.8rem; font-weight:800; line-height:1; min-width:2ch; text-align:right; }\n\n      .oefb-stats{\n        display:flex; gap:5px; flex-wrap:wrap;\n        border-top:1px solid var(--ring); padding-top:10px;\n      }\n      .oefb-stat{\n        display:flex; align-items:center; gap:4px;\n        padding:6px 8px; border:1px solid var(--ring);\n        border-radius:10px; background:#f8fafc;\n        font-variant-numeric: tabular-nums;\n      }\n      .oefb-stat svg{ width:28px; height:28px; display:block; }\n\n      .oefb-section-title{ font-weight:800; font-size:1.1rem; margin:1.2rem 0 .6rem; }\n\n      \/* Staff-spezifisch (Kontaktzeile) *\/\n      .oefb-contact{ display:flex; gap:0px; flex-wrap:wrap; flex-direction: column;}\n      .oefb-icon{ width:18px; height:18px; display:inline-block; vertical-align:middle; }\n      .oefb-contact a{ display:inline-flex; align-items:center; gap:6px; text-decoration:none; color:inherit; }\n      .oefb-contact a:hover{ text-decoration:underline; }\n    <\/style>\n\n    <div class=\"oefb-wrap\">\n              <div class=\"oefb-section-title\">Kader<\/div>\n        <div class=\"oefb-grid\">\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/7\/670725461856634215_9094737~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Nico R\u00f6ssler \u2013 Tor\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_8a33f2b45bbc918afc75-1,0-100x100.png\" alt=\"Nico R\u00f6ssler\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Nico R\u00f6ssler<\/div>\n                    <div class=\"oefb-pos\">Tor<\/div>                  <\/div>\n                  <div class=\"oefb-num\">1<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>15<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/5\/670725461856634215_9094705~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Muzaffer Dede \u2013 Sturm\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_6672aa9a1fa1f7c6ba7b-1,0-100x100.png\" alt=\"Muzaffer Dede\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Muzaffer Dede<\/div>\n                    <div class=\"oefb-pos\">Sturm<\/div>                  <\/div>\n                  <div class=\"oefb-num\">2<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>12<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>3<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/8\/670725461856634215_9094708~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Benjamin B\u00f6hm\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_0041941142d70bba257c-1,0-100x100.png\" alt=\"Benjamin B\u00f6hm\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Benjamin B\u00f6hm<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">3<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/0\/670725461856634215_9094710~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Maximilian Binder \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_9db865a66e56755ff837-1,0-100x100.png\" alt=\"Maximilian Binder\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Maximilian Binder<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">3<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>12<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/4\/670725461856634215_9232214~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Bastian Semper \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_a4540761ddd75a99fcb8-1,0-100x100.png\" alt=\"Bastian Semper\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Bastian Semper<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">4<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>5<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/2\/670725461856634215_9473862~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Enzo Malonga\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_443fca51fb5c0e2cd15e-1,0-100x100.png\" alt=\"Enzo Malonga\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Enzo Malonga<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">4<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/7\/670725461856634215_9094707~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Elias Fritz \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_c47bed66f6bb344d2204-1,0-100x100.png\" alt=\"Elias Fritz\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Elias Fritz<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">5<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/5\/670725461856634215_9232115~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Felix Steininger \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_3cdf338c311288e47cad-1,0-100x100.png\" alt=\"Felix Steininger\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Felix Steininger<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">5<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>12<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9232161~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Niklas Zahrl \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_3fdcab9513474cd78356-1,0-100x100.png\" alt=\"Niklas Zahrl\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Niklas Zahrl<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">6<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>15<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/6\/670725461856634215_9094726~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Clemens Elijah Stellner \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_bace319c3c62c55c6c14-1,0-100x100.png\" alt=\"Clemens Elijah Stellner\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Clemens Elijah Stellner<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">7<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>13<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9094731~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Finn Gerstbauer \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_de987a843d49fcdf3524-1,0-100x100.png\" alt=\"Finn Gerstbauer\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Finn Gerstbauer<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">8<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>14<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/3\/670725461856634215_9232113~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Tim Koppensteiner \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_b664908c19e26d20a93d-1,0-100x100.png\" alt=\"Tim Koppensteiner\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Tim Koppensteiner<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">9<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>12<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>4<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/6\/670725461856634215_9094736~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Ahmet Furkan Ucar \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_1945066061d044925880-1,0-100x100.png\" alt=\"Ahmet Furkan Ucar\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Ahmet Furkan Ucar<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">10<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>10<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>4<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/2\/670725461856634215_9232112~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Erik Hackl\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_80df12ac6a27053fcc55-1,0-100x100.png\" alt=\"Erik Hackl\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Erik Hackl<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">10<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9473861~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Gwen Malonga\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_a884083ae4afd14d6151-1,0-100x100.png\" alt=\"Gwen Malonga\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Gwen Malonga<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">10<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/3\/670725461856634215_9094723~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Marcel Lembachner\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_cbb26d674edbef6a650b-1,0-100x100.png\" alt=\"Marcel Lembachner\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Marcel Lembachner<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">10<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9094701~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Felix Burger \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_b267f30a6a04a471884c-1,0-100x100.png\" alt=\"Felix Burger\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Felix Burger<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">11<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>15<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/7\/670725461856634215_9094727~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Lukas Koppensteiner\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_93455893baa2567845da-1,0-100x100.png\" alt=\"Lukas Koppensteiner\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Lukas Koppensteiner<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">12<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>6<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/2\/670725461856634215_9094732~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Mathias M\u00fcller \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_b5dbcaa1aaa8f76e1a8c-1,0-100x100.png\" alt=\"Mathias M\u00fcller\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Mathias M\u00fcller<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">12<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>4<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/5\/670725461856634215_9441605~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Alexander Truhlar\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_2852658e00e670cbe4dc-1,0-100x100.png\" alt=\"Alexander Truhlar\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Alexander Truhlar<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">14<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/8\/670725461856634215_9094728~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Rafael Sascha Koller \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_96743f33666005b92472-1,0-100x100.png\" alt=\"Rafael Sascha Koller\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Rafael Sascha Koller<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">14<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/4\/670725461856634215_9094724~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Christopher Knapp \u2013 Sturm\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_fc15c482d17891c5a94d-1,0-100x100.png\" alt=\"Christopher Knapp\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Christopher Knapp<\/div>\n                    <div class=\"oefb-pos\">Sturm<\/div>                  <\/div>\n                  <div class=\"oefb-num\">15<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>8<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/4\/670725461856634215_9094704~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Jan Cincura\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_bbab38d771ee0595fafb-1,0-100x100.png\" alt=\"Jan Cincura\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Jan Cincura<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">16<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/6\/670725461856634215_9094706~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Joachim Boigenzahn \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_1f10f18dfd53e9d629dc-1,0-100x100.png\" alt=\"Joachim Boigenzahn\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Joachim Boigenzahn<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">16<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>3<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/2\/670725461856634215_9094702~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Michael Dudek\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_d78032014dc1151dd4fd-1,0-100x100.png\" alt=\"Michael Dudek\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Michael Dudek<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">16<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/8\/670725461856634215_9478708~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Pablo Krawczyk\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_d40212ad204612e24f3e-1,0-100x100.png\" alt=\"Pablo Krawczyk\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Pablo Krawczyk<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\">16<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>2<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/3\/670725461856634215_9094703~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Leo Maximilian Fietz \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_d6f5ea43b7caff2f8e43-1,0-100x100.png\" alt=\"Leo Maximilian Fietz\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Leo Maximilian Fietz<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">17<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>7<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/9\/670725461856634215_9094729~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Lukas Zimmermann \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_b22cf352252f5826d65f-1,0-100x100.png\" alt=\"Lukas Zimmermann\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Lukas Zimmermann<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">18<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>11<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9094711~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Tobias Dienstl \u2013 Verteidigung\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_fc665e6a4b5560aaee9b-1,0-100x100.png\" alt=\"Tobias Dienstl\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Tobias Dienstl<\/div>\n                    <div class=\"oefb-pos\">Verteidigung<\/div>                  <\/div>\n                  <div class=\"oefb-num\">19<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>14<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>5<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/9\/670725461856634215_9094709~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Janick Feiler \u2013 Mittelfeld\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_38af453b4e7588ea4ca1-1,0-100x100.png\" alt=\"Janick Feiler\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Janick Feiler<\/div>\n                    <div class=\"oefb-pos\">Mittelfeld<\/div>                  <\/div>\n                  <div class=\"oefb-num\">20<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>9<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>1<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9433461~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Jan Morawetz \u2013 Tor\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_9cc3e0669e561b272f5a-1,0-100x100.png\" alt=\"Jan Morawetz\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Jan Morawetz<\/div>\n                    <div class=\"oefb-pos\">Tor<\/div>                  <\/div>\n                  <div class=\"oefb-num\">21<\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/5\/670725461856634215_9094725~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"J\u00fcrgen Zauner\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_3ca6ff1c0fe01ff1e14e-1,0-100x100.png\" alt=\"J\u00fcrgen Zauner\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">J\u00fcrgen Zauner<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/5\/670725461856634215_9418905~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Leon Breit\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_10e1826b9173850bd120-1,0-100x100.png\" alt=\"Leon Breit\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Leon Breit<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/1\/670725461856634215_9232131~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Mert Ak\u00f6z\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_0d1280fdf54da0d7f01b-1,0-100x100.png\" alt=\"Mert Ak\u00f6z\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Mert Ak\u00f6z<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/0\/670725461856634215_9094730~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Michael F\u00fcrnkranz\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_9b194fc704eed3bab233-1,0-100x100.png\" alt=\"Michael F\u00fcrnkranz\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Michael F\u00fcrnkranz<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/3\/670725461856634215_9094733~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Niko Mager\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_a2ec99e1c0c45181f6ac-1,0-100x100.png\" alt=\"Niko Mager\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Niko Mager<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n          \n          <a class=\"oefb-card-link\" href=\"https:\/\/vereine.oefb.at\/netzwerk\/spielerdetails\/0\/670725461856634215_9473860~0.htm\" target=\"_blank\" rel=\"noopener noreferrer\" aria-label=\"Tolga Cul\">            <div class=\"oefb-card has-link\">\n              <div class=\"oefb-media\">\n                                  <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_bb1804311b80d03f3498-1,0-100x100.png\" alt=\"Tolga Cul\">\n                              <\/div>\n              <div class=\"oefb-body\">\n                <div class=\"oefb-head\">\n                  <div>\n                    <div class=\"oefb-name\">Tolga Cul<\/div>\n                                      <\/div>\n                  <div class=\"oefb-num\"> <\/div>\n                <\/div>\n\n                <div class=\"oefb-stats\">\n                  <div class=\"oefb-stat\" title=\"Eins\u00e4tze\">\n                    <!-- Blaues Trikot-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <path d=\"M8 4l2.5 2h3L16 4l4 2-2 4v10H6V10L4 6l4-2z\"\n                            fill=\"#3b82f6\" stroke=\"#1e40af\" stroke-width=\"1.5\" stroke-linejoin=\"round\"\/>\n                      <path d=\"M10.5 6.5a3 3 0 0 0 3 0\"\n                            stroke=\"#1e3a8a\" stroke-width=\"1.5\" fill=\"none\" stroke-linecap=\"round\"\/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                  <div class=\"oefb-stat\" title=\"Tore\">\n                    <!-- Fu\u00dfballtor-Icon -->\n                    <svg viewBox=\"0 0 24 24\" width=\"32\" height=\"32\" aria-hidden=\"true\">\n                      <rect x=\"2\" y=\"7\" width=\"20\" height=\"10\" rx=\"1.5\" ry=\"1.5\" fill=\"#ffffff\" stroke=\"#0f172a\" stroke-width=\"1.5\"\/>\n                      <path d=\"M2 12h20M7 7v10M12 7v10M17 7v10\" stroke=\"#0f172a\" stroke-width=\"1\" \/>\n                    <\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\n\t\t\t\t  <div class=\"oefb-stat\" title=\"Gelbe Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#facc15\" stroke=\"#facc15\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\n                  <div class=\"oefb-stat\" title=\"Gelb\/Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"6\" y=\"6\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#facc15\"\/><rect x=\"9\" y=\"4\" width=\"9\" height=\"12\" rx=\"1.5\" fill=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\t\t\t\t\t\t\n                  <div class=\"oefb-stat\" title=\"Rote Karten\">\n                    <svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><rect x=\"7\" y=\"4\" width=\"10\" height=\"16\" rx=\"2\" fill=\"#ef4444\" stroke=\"#ef4444\"\/><\/svg>\n                    <span>0<\/span>\n                  <\/div>\n\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/a>\n                  <\/div>\n      \n              <div class=\"oefb-section-title\">Trainer &amp; Betreuer<\/div>\n        <div class=\"oefb-staff-grid\">\n                    <!-- Staff-Karte NICHT als Link wrappen (wegen mailto\/tel Links im Inneren) -->\n          <div class=\"oefb-card\">\n            <div class=\"oefb-media\">\n                              <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/assets\/vereine3\/img\/icons\/dummy-photo.svg\" alt=\"Joachim Boigenzahn\">\n                          <\/div>\n            <div class=\"oefb-body\">\n              <div class=\"oefb-head\">\n                <div>\n                  <div class=\"oefb-name\">Joachim Boigenzahn<\/div>\n                  <div class=\"oefb-pos\">Trainer<\/div>                <\/div>\n              <\/div>\n              <div class=\"oefb-contact\">\n                                  <a href=\"mailto:&#106;oa&#99;&#104;i&#109;&#46;bo&#105;ge&#110;za&#104;n&#64;gm&#97;&#105;&#108;&#46;&#99;&#111;&#109;\" title=\"E-Mail senden\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M4 6h16v12H4z\"\/><path d=\"M22 7l-10 6L2 7\"\/><\/svg>\n                    <span>j&#111;&#97;&#99;h&#105;&#109;&#46;&#98;&#111;i&#103;&#101;nza&#104;&#110;&#64;gm&#97;il&#46;c&#111;&#109;<\/span>\n                  <\/a>\n                                                  <a href=\"tel:+436804423390\" title=\"Anrufen\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.77 19.77 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.77 19.77 0 0 1 2.1 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.32 1.76.6 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.6.6A2 2 0 0 1 22 16.92z\"\/><\/svg>\n                    <span>+436804423390<\/span>\n                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n                    <!-- Staff-Karte NICHT als Link wrappen (wegen mailto\/tel Links im Inneren) -->\n          <div class=\"oefb-card\">\n            <div class=\"oefb-media\">\n                              <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/assets\/vereine3\/img\/icons\/dummy-photo.svg\" alt=\"Ing. Michael Scherzer\">\n                          <\/div>\n            <div class=\"oefb-body\">\n              <div class=\"oefb-head\">\n                <div>\n                  <div class=\"oefb-name\">Ing. Michael Scherzer<\/div>\n                  <div class=\"oefb-pos\">Co-Trainer<\/div>                <\/div>\n              <\/div>\n              <div class=\"oefb-contact\">\n                                  <a href=\"mailto:mic&#104;&#97;e&#108;&#46;sc&#104;er&#122;&#101;r&#64;l&#101;y&#114;&#101;&#114;&#45;g&#114;af&#46;a&#116;\" title=\"E-Mail senden\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M4 6h16v12H4z\"\/><path d=\"M22 7l-10 6L2 7\"\/><\/svg>\n                    <span>m&#105;&#99;&#104;a&#101;&#108;.&#115;&#99;he&#114;&#122;er&#64;&#108;&#101;&#121;&#114;er-g&#114;a&#102;&#46;at<\/span>\n                  <\/a>\n                                                  <a href=\"tel:+436646197866\" title=\"Anrufen\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.77 19.77 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.77 19.77 0 0 1 2.1 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.32 1.76.6 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.6.6A2 2 0 0 1 22 16.92z\"\/><\/svg>\n                    <span>+436646197866<\/span>\n                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n                    <!-- Staff-Karte NICHT als Link wrappen (wegen mailto\/tel Links im Inneren) -->\n          <div class=\"oefb-card\">\n            <div class=\"oefb-media\">\n                              <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/vereine3\/person\/images\/834733022602002384_fa6fe774dd467a045444-1,0-100x100.png\" alt=\"Patrick Koppensteiner\">\n                          <\/div>\n            <div class=\"oefb-body\">\n              <div class=\"oefb-head\">\n                <div>\n                  <div class=\"oefb-name\">Patrick Koppensteiner<\/div>\n                  <div class=\"oefb-pos\">Co-Trainer<\/div>                <\/div>\n              <\/div>\n              <div class=\"oefb-contact\">\n                                  <a href=\"mailto:&#80;&#97;t&#114;ick.k&#111;p&#112;&#101;n&#115;&#116;ein&#101;r&#64;&#97;on&#46;&#97;&#116;\" title=\"E-Mail senden\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M4 6h16v12H4z\"\/><path d=\"M22 7l-10 6L2 7\"\/><\/svg>\n                    <span>&#80;&#97;tr&#105;&#99;&#107;&#46;k&#111;&#112;&#112;e&#110;&#115;t&#101;&#105;ne&#114;&#64;&#97;&#111;n.at<\/span>\n                  <\/a>\n                                                  <a href=\"tel:06644034749\" title=\"Anrufen\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.77 19.77 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.77 19.77 0 0 1 2.1 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.32 1.76.6 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.17a2 2 0 0 1 2.11-.45c.84.28 1.71.48 2.6.6A2 2 0 0 1 22 16.92z\"\/><\/svg>\n                    <span>06644034749<\/span>\n                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n                    <!-- Staff-Karte NICHT als Link wrappen (wegen mailto\/tel Links im Inneren) -->\n          <div class=\"oefb-card\">\n            <div class=\"oefb-media\">\n                              <img decoding=\"async\" class=\"oefb-img\" src=\"https:\/\/vereine.oefb.at\/assets\/vereine3\/img\/icons\/dummy-photo.svg\" alt=\"J\u00fcrgen Zauner\">\n                          <\/div>\n            <div class=\"oefb-body\">\n              <div class=\"oefb-head\">\n                <div>\n                  <div class=\"oefb-name\">J\u00fcrgen Zauner<\/div>\n                  <div class=\"oefb-pos\">TW-Trainer<\/div>                <\/div>\n              <\/div>\n              <div class=\"oefb-contact\">\n                                  <a href=\"mailto:&#74;u&#101;&#114;&#103;e&#110;&#46;Z&#97;&#117;&#110;&#101;r&#64;gmx&#46;&#97;&#116;\" title=\"E-Mail senden\">\n                    <svg class=\"oefb-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\"><path d=\"M4 6h16v12H4z\"\/><path d=\"M22 7l-10 6L2 7\"\/><\/svg>\n                    <span>&#74;&#117;&#101;rg&#101;n.Z&#97;&#117;&#110;&#101;&#114;&#64;&#103;&#109;x.a&#116;<\/span>\n                  <\/a>\n                                              <\/div>\n            <\/div>\n          <\/div>\n                  <\/div>\n          <\/div>\n    [\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text css_animation=&#8220;fadeIn&#8220; css=&#8220;&#8220;] Kampfmannschaft II &#8211; 2. Klasse Waldviertel Zentral [\/vc_column_text][vc_single_image image=&#8220;5400&#8243; img_size=&#8220;large&#8220; alignment=&#8220;center&#8220; css=&#8220;&#8220;][\/vc_column][\/vc_row][vc_row][vc_column width=&#8220;1\/2&#8243;][vc_column_text css=&#8220;&#8220;] &nbsp; kompletten Spielplan anzeigen [\/vc_column_text][\/vc_column][vc_column width=&#8220;1\/2&#8243;][vc_column_text css=&#8220;.vc_custom_1755700092330{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}&#8220;][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text css_animation=&#8220;none&#8220; css=&#8220;&#8220;][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-2792","page","type-page","status-publish","hentry","description-off"],"_links":{"self":[{"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/pages\/2792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/comments?post=2792"}],"version-history":[{"count":36,"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/pages\/2792\/revisions"}],"predecessor-version":[{"id":4970,"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/pages\/2792\/revisions\/4970"}],"wp:attachment":[{"href":"https:\/\/www.asvschrems.com\/fussball\/wp-json\/wp\/v2\/media?parent=2792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}