@font-face {
  font-family: "Alverata";
  src: url("/assets/fobi-alverata.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fobi-blue: #036cb4;
  --fobi-pink: #d72556;
  --fobi-green: #00965f;
  --fobi-yellow: #fbd56b;
  --fobi-teal: #4a9599;
  --fobi-bg: #eff8ff;
  --fobi-heading-font: "Alverata", Georgia, serif;
  --fobi-body-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.fobi-brand,
.fobi-brand {
  background: var(--fobi-bg);
  color: #1a2b33;
  font-family: var(--fobi-body-font);
}

.fobi-brand h1,
.fobi-brand h2,
.fobi-brand .fobi-heading,
.fobi-brand .web-hub-module-title {
  font-family: var(--fobi-heading-font);
  color: var(--fobi-teal);
}

.fobi-brand .web-hub-header,
.fobi-brand header.web-hub-header {
  border-bottom: 3px solid var(--fobi-teal);
  background: #fff;
}

.fobi-brand .fobi-logo {
  height: 42px;
  width: auto;
}

.fobi-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.fobi-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(74, 149, 153, 0.25);
  padding: 0;
  box-shadow: 0 2px 8px rgba(3, 108, 180, 0.06);
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fobi-tile__thumb {
  aspect-ratio: 16 / 9;
  background: #d8e8f2;
  overflow: hidden;
}

.fobi-tile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fobi-tile__thumb--placeholder {
  background: linear-gradient(135deg, #d8e8f2 0%, #eff8ff 100%);
}

.fobi-tile__title,
.fobi-tile__meta {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.fobi-tile__title {
  padding-top: 0.85rem;
  margin: 0 0 0.35rem;
}

.fobi-tile > .fobi-tile__meta:last-child,
.fobi-tile > div.fobi-tile__meta:last-of-type {
  padding-bottom: 1rem;
}

.fobi-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(3, 108, 180, 0.12);
}

.fobi-tile__title {
  font-family: var(--fobi-heading-font);
  color: var(--fobi-blue);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.fobi-tile__meta {
  font-size: 0.85rem;
  color: #5a6a72;
}

.fobi-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--fobi-blue), var(--fobi-pink), var(--fobi-green), var(--fobi-yellow));
  border-radius: 2px;
  margin: 0.5rem 0 1rem;
}

.fobi-admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.fobi-admin-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--fobi-teal);
  color: var(--fobi-teal);
  text-decoration: none;
  font-size: 0.9rem;
}

.fobi-admin-nav a:hover {
  background: var(--fobi-teal);
  color: #fff;
}

.fobi-video-wrap {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  max-width: 960px;
}

.fobi-video-wrap video {
  width: 100%;
  display: block;
}

.fobi-video-chapters {
  background: #111;
  padding: 0.45rem 0.55rem 0.55rem;
}

.fobi-video-chapters__track {
  position: relative;
  display: flex;
  height: 2.35rem;
  border-radius: 6px;
  overflow: hidden;
  background: #2a2a2a;
}

.fobi-video-chapters__seg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0 0.35rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(74, 149, 153, 0.35);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.fobi-video-chapters__seg:hover,
.fobi-video-chapters__seg.is-active {
  background: rgba(3, 108, 180, 0.72);
}

.fobi-video-chapters__seg-label {
  display: block;
  font-size: 0.72rem;
  line-height: 2.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fobi-video-toc {
  max-width: 960px;
  margin: 1.1rem 0 0.5rem;
}

.fobi-video-toc__list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  border: 1px solid rgba(74, 149, 153, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.fobi-video-toc__item {
  display: flex;
  gap: 0.85rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-bottom: 1px solid rgba(74, 149, 153, 0.12);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.fobi-video-toc__list li:last-child .fobi-video-toc__item {
  border-bottom: 0;
}

.fobi-video-toc__item:hover,
.fobi-video-toc__item.is-active {
  background: rgba(74, 149, 153, 0.08);
}

.fobi-video-toc__time {
  flex: 0 0 4.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #036cb4;
}

.fobi-video-toc__title {
  flex: 1 1 auto;
  color: #1a2b33;
}

.fobi-kapitel-table-wrap {
  width: 100%;
}

.fobi-kapitel-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.55rem;
  background: #fff;
  border: 1px solid rgba(74, 149, 153, 0.22);
  border-radius: 10px;
  overflow: hidden;
}

.fobi-kapitel-table th,
.fobi-kapitel-table td {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid rgba(74, 149, 153, 0.12);
  vertical-align: middle;
}

.fobi-kapitel-table th {
  text-align: left;
  font-size: 0.85rem;
  color: #5a6a72;
  background: #f7fbfd;
}

.fobi-kapitel-table tr:last-child td {
  border-bottom: 0;
}

.fobi-kapitel-table .fobi-kapitel-time {
  width: 8.5rem;
  min-width: 8.5rem;
}

.fobi-kapitel-table .fobi-kapitel-titel {
  width: 100%;
}

.fobi-kapitel-actions {
  width: 2.5rem;
  text-align: center;
}

/* Einheitliches zentriertes FoBi-Layout (etwas breiter als Standard-Shell) */
.web-shell.fobi-layout {
  --max-content: 76rem;
  background: var(--fobi-bg);
}

.web-shell.fobi-layout .web-hub-card-wrap {
  background: var(--fobi-bg);
}

.web-shell.fobi-layout .web-hub-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(74, 149, 153, 0.18);
  box-shadow: 0 2px 12px rgba(3, 108, 180, 0.07);
  padding: var(--space-3, 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fobi-page {
  max-width: none;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 2.5rem;
  box-sizing: border-box;
}

.fobi-section + .fobi-section {
  margin-top: 2rem;
}

.fobi-section__lead {
  margin: 0 0 1rem;
  color: #5a6a72;
  line-height: 1.5;
}

.fobi-panel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(74, 149, 153, 0.22);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(3, 108, 180, 0.06);
}

.fobi-admin-nav a[aria-current="page"] {
  background: var(--fobi-teal);
  color: #fff;
  font-weight: 600;
}

/* Formulare */
.fobi-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
}

.fobi-field__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #33414a;
}

.fobi-field input[type="text"],
.fobi-field input[type="email"],
.fobi-field input[type="password"],
.fobi-field input[type="number"],
.fobi-field input[type="date"],
.fobi-field input[type="file"],
.fobi-field textarea,
.fobi-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.75rem;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  font: inherit;
  color: inherit;
  background: #fff;
}

.fobi-field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.fobi-field input:focus,
.fobi-field textarea:focus,
.fobi-field select:focus {
  outline: none;
  border-color: var(--fobi-teal);
  box-shadow: 0 0 0 2px rgba(74, 149, 153, 0.22);
}

.fobi-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.fobi-form__status {
  font-size: 0.9rem;
  color: #5a6a72;
}

/* Buttons (Alias: web-hub-btn — früher ohne Styles verwendet) */
.fobi-btn,
.web-hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  border: none;
  border-radius: 8px;
  background: var(--fobi-teal);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.fobi-btn:hover,
.web-hub-btn:hover {
  background: color-mix(in srgb, var(--fobi-teal) 88%, #000);
  color: #fff;
}

.fobi-btn:active,
.web-hub-btn:active {
  transform: translateY(1px);
}

.fobi-btn--secondary {
  background: #fff;
  color: var(--fobi-teal);
  border: 1px solid var(--fobi-teal);
}

.fobi-btn--secondary:hover {
  background: var(--fobi-teal);
  color: #fff;
}

.fobi-btn--danger {
  background: #fff;
  color: #b00020;
  border: 1px solid #b00020;
}

.fobi-btn--danger:hover {
  background: #b00020;
  color: #fff;
}

.fobi-btn--small {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.fobi-form--wide {
  max-width: 40rem;
}

.fobi-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #33414a;
}

.fobi-check input {
  margin-top: 0.2rem;
}

.fobi-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  white-space: nowrap;
}

.fobi-admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.fobi-admin-video-row {
  cursor: pointer;
}

.fobi-admin-video-row:hover {
  background: rgba(74, 149, 153, 0.06);
}

.fobi-admin-nutzer-row {
  cursor: pointer;
}

.fobi-admin-nutzer-row:hover {
  background: rgba(74, 149, 153, 0.06);
}

.fobi-admin-video-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fobi-admin-video-link:hover .fobi-admin-video-title {
  color: #036cb4;
}

.fobi-admin-video-title {
  font-weight: 600;
  color: #1a2b33;
}

.fobi-admin-video-meta {
  font-size: 0.85rem;
  color: #5a6a72;
  margin-top: 0.15rem;
}

.fobi-form__status--err {
  color: #b00020;
}

html.fobi-page-drop-active::after {
  content: "";
  position: fixed;
  inset: 0.75rem;
  z-index: 10000;
  pointer-events: none;
  border: 3px dashed rgba(3, 108, 180, 0.55);
  border-radius: 16px;
  background: rgba(3, 108, 180, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.fobi-edit-panel {
  margin-bottom: 0.5rem;
}

/* Tabellen */
.fobi-table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 149, 153, 0.2);
  background: #fff;
  box-shadow: 0 2px 10px rgba(3, 108, 180, 0.05);
}

.fobi-table,
.web-hub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.fobi-table th,
.fobi-table td,
.web-hub-table th,
.web-hub-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8edf0;
  vertical-align: middle;
}

.fobi-table th,
.web-hub-table th {
  background: #f4f9fa;
  font-weight: 600;
  color: #33414a;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.fobi-table tbody tr:last-child td,
.web-hub-table tbody tr:last-child td {
  border-bottom: none;
}

.fobi-table tbody tr:hover td,
.web-hub-table tbody tr:hover td {
  background: rgba(74, 149, 153, 0.06);
}

.fobi-table a,
.web-hub-table a {
  color: var(--fobi-blue);
  font-weight: 600;
  text-decoration: none;
}

.fobi-table a:hover,
.web-hub-table a:hover {
  text-decoration: underline;
}

.fobi-table .fobi-btn,
.web-hub-table .fobi-btn,
.fobi-table .web-hub-btn,
.web-hub-table .web-hub-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.fobi-empty {
  color: #5a6a72;
  font-style: italic;
  padding: 0.5rem 0;
}

.fobi-result {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(74, 149, 153, 0.2);
  word-break: break-all;
  font-size: 0.9rem;
}

.fobi-einladung-url {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 28rem;
}

.fobi-einladung-url__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.85rem;
}

.fobi-btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  flex: 0 0 auto;
}

.fobi-copy-icon {
  display: block;
}

.fobi-copy-link.is-copied {
  color: #00965f;
  border-color: #00965f;
}

.fobi-muted {
  color: #7a8a92;
  font-size: 0.85rem;
}

.fobi-back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--fobi-blue);
  font-weight: 600;
  text-decoration: none;
}

.fobi-back-link:hover {
  text-decoration: underline;
}

.fobi-standalone__main {
  max-width: 28rem;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
  box-sizing: border-box;
  min-height: 100vh;
}

.fobi-standalone__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.fobi-standalone__title {
  font-size: 1.35rem;
  text-align: center;
  margin: 0 0 0.5rem;
}

.fobi-standalone__footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
}

.fobi-standalone__footer a {
  color: var(--fobi-blue);
  font-weight: 600;
  text-decoration: none;
}

.fobi-standalone .fobi-field input,
.fobi-standalone .fobi-field textarea,
.fobi-standalone .fobi-field select {
  font-size: 16px;
}

.fobi-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-right: 0.25rem;
}

.fobi-header-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--fobi-teal);
  background: #fff;
  color: var(--fobi-teal);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.fobi-header-btn:hover {
  background: var(--fobi-teal);
  color: #fff;
}

.fobi-header-btn--primary {
  background: var(--fobi-teal);
  color: #fff;
}

.fobi-header-btn--primary:hover {
  background: color-mix(in srgb, var(--fobi-teal) 88%, #000);
  color: #fff;
}

/* Mobile-Navigationsleiste (unter Header, nur auf schmalen Screens) */
.fobi-mobile-nav {
  display: none;
}

.fobi-header-actions--desktop {
  display: flex;
}

.fobi-mobile-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--fobi-teal);
  background: #fff;
  color: var(--fobi-teal);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.fobi-mobile-nav__link--primary {
  background: var(--fobi-teal);
  color: #fff;
}

.fobi-admin-home {
  margin: 0 0 1.5rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.fobi-admin-home__title {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--fobi-teal);
}

.fobi-admin-home__lead {
  margin: 0 0 0.85rem;
  color: #5a6a72;
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 36rem;
}

.fobi-admin-home .fobi-accent-bar {
  margin: 0;
  max-width: 12rem;
}

.web-shell.fobi-layout .hub-landing-tiles {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1.1rem;
  max-width: none;
  margin: 0;
}

.web-shell.fobi-layout .hub-landing-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(74, 149, 153, 0.22);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 2px 10px rgba(3, 108, 180, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.web-shell.fobi-layout .hub-landing-tile:hover {
  transform: translateY(-2px);
  border-color: var(--tile-accent, var(--fobi-teal));
  box-shadow: 0 6px 18px rgba(3, 108, 180, 0.12);
}

.web-shell.fobi-layout .hub-landing-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--tile-accent, var(--fobi-teal)) 14%, #fff);
  color: var(--tile-accent, var(--fobi-teal));
}

.web-shell.fobi-layout .hub-landing-tile__svg {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.web-shell.fobi-layout .hub-landing-tile__svg svg {
  width: 26px;
  height: 26px;
  display: block;
}

.web-shell.fobi-layout .hub-landing-tile__title {
  font-family: var(--fobi-heading-font);
  color: var(--tile-accent, var(--fobi-blue));
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.web-shell.fobi-layout .hub-landing-tile__text {
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .web-shell.fobi-layout .web-hub-header__inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px clamp(0.75rem, 3vw, 1rem);
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .web-shell.fobi-layout .web-hub-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 5.5rem);
  }

  .web-shell.fobi-layout .web-hub-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 4px;
  }

  .web-shell.fobi-layout .web-hub-logo-link img {
    height: 36px;
  }

  .web-shell.fobi-layout .web-hub-module {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .web-shell.fobi-layout .web-hub-product {
    font-size: 0.65rem;
  }

  .web-shell.fobi-layout .web-hub-user-name,
  .web-shell.fobi-layout .web-hub-alias-badge {
    display: none;
  }

  .web-shell.fobi-layout .web-hub-iconbtn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    justify-content: center;
  }

  .web-shell.fobi-layout .web-hub-card-wrap {
    padding: 1rem clamp(0.75rem, 3vw, 1rem) 1.75rem;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  }

  .fobi-header-actions--desktop {
    display: none;
  }

  .fobi-mobile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.65rem clamp(0.75rem, 3vw, 1rem);
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    background: #fff;
    border-bottom: 1px solid rgba(74, 149, 153, 0.22);
    position: sticky;
    top: 0;
    z-index: 30;
    max-width: var(--max-content, 76rem);
    width: min(96vw, var(--max-content, 76rem));
    margin: 0 auto;
    box-sizing: border-box;
  }

  .fobi-mobile-nav__link {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: min(100%, 9.5rem);
  }

  .fobi-page {
    padding: 1rem 0 2rem;
  }

  .fobi-panel {
    padding: 1rem;
    border-radius: 10px;
  }

  .fobi-section + .fobi-section {
    margin-top: 1.5rem;
  }

  .fobi-heading {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .fobi-admin-nav a {
    flex: 1 1 calc(50% - 0.25rem);
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .fobi-form {
    max-width: none;
  }

  .fobi-field input[type="text"],
  .fobi-field input[type="email"],
  .fobi-field input[type="password"],
  .fobi-field input[type="number"],
  .fobi-field input[type="date"],
  .fobi-field textarea,
  .fobi-field select {
    font-size: 16px;
  }

  .fobi-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fobi-form__actions .fobi-btn,
  .fobi-form__actions .web-hub-btn {
    width: 100%;
  }

  .fobi-btn,
  .web-hub-btn {
    min-height: 44px;
  }

  .fobi-table-wrap {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .fobi-table th,
  .fobi-table td,
  .web-hub-table th,
  .web-hub-table td {
    padding: 0.55rem 0.65rem;
    font-size: 0.88rem;
  }

  .fobi-table {
    min-width: 32rem;
  }

  .fobi-video-wrap {
    border-radius: 6px;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .fobi-back-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .web-shell.fobi-layout .web-dropdown__panel {
    min-width: min(92vw, 280px);
    max-width: calc(100vw - 1rem);
  }

  .web-shell.fobi-layout .hub-profil-grid {
    grid-template-columns: 1fr;
  }

  .web-shell.fobi-layout .hub-profil-section,
  .web-shell.fobi-layout .hub-form-stack,
  .web-shell.fobi-layout .hub-profil-totp-enroll {
    max-width: none;
  }
}

@media (max-width: 400px) {
  .fobi-mobile-nav__link {
    flex: 1 1 100%;
  }

  .web-shell.fobi-layout .web-hub-module {
    font-size: 0.98rem;
  }
}
