/* === CSS extrahiert aus detail.html (extrahiert 2026-04-26) === */
  @import url('/shared/fonts/inter.css');
  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: linear-gradient(145deg, #eef2f7 0%, #e4ecf4 25%, #dfe8f0 50%, #e8eef5 75%, #f0f4f8 100%);
    --nav-bg: rgba(255,255,255,0.55);
    --nav-border: rgba(255,255,255,0.5);
    --card-bg: rgba(255,255,255,0.45);
    --card-border: rgba(255,255,255,0.6);
    --card-hover-bg: rgba(255,255,255,0.65);
    --card-shadow: 0 2px 16px rgba(0,0,0,0.04);
    --card-hover-shadow: 0 12px 44px rgba(0,0,0,0.08);
    --text-primary: #1c1c1e;
    --text-secondary: #636366;
    --text-tertiary: #8e8e93;
    --badge-bg: rgba(4,179,214,0.1);
    --badge-color: #04b3d6;
    --toggle-bg: rgba(0,0,0,0.06);
    --toggle-knob: #fff;
    --input-bg: rgba(255,255,255,0.6);
    --input-border: rgba(0,0,0,0.1);
    --overlay-bg: rgba(0,0,0,0.35);
    --modal-bg: rgba(255,255,255,0.75);
  }

  [data-theme="dark"] {
    --bg: linear-gradient(145deg, #0a0a1a 0%, #0f1528 20%, #151022 40%, #1a0f1e 60%, #12111a 80%, #0d1318 100%);
    --nav-bg: rgba(255,255,255,0.05);
    --nav-border: rgba(255,255,255,0.09);
    --card-bg: rgba(255,255,255,0.06);
    --card-border: rgba(255,255,255,0.1);
    --card-hover-bg: rgba(255,255,255,0.1);
    --card-shadow: 0 2px 16px rgba(0,0,0,0.2);
    --card-hover-shadow: 0 12px 44px rgba(0,0,0,0.3);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #636366;
    --badge-bg: rgba(4,179,214,0.15);
    --badge-color: #2cc5e4;
    --toggle-bg: rgba(255,255,255,0.1);
    --toggle-knob: #1c1c1e;
    --input-bg: rgba(255,255,255,0.07);
    --input-border: rgba(255,255,255,0.12);
    --overlay-bg: rgba(0,0,0,0.65);
    --modal-bg: rgba(25,25,40,0.88);
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    min-height: 100vh;
    background: var(--bg);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    -webkit-font-smoothing: antialiased;
    transition: background 0.4s;
  }

  @keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(44px) saturate(180%);
    -webkit-backdrop-filter: blur(44px) saturate(180%);
    border-bottom: 1px solid var(--nav-border);
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }

  .nav-logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
  }
  [data-theme="dark"] .nav-logo { filter: brightness(2.2) contrast(0.85); }

  .nav-brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.4px;
    transition: color 0.3s;
    flex-shrink: 0;
  }

  .nav-divider {
    width: 1px;
    height: 18px;
    background: var(--nav-border);
    margin: 0 2px;
    flex-shrink: 0;
  }

  .nav-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #f0a500;
    transition: color 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--toggle-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-secondary);
    font-size: 12.5px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
  }
  .back-btn:hover {
    background: var(--card-hover-bg);
    color: var(--text-primary);
  }

  .theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .toggle-icon { font-size: 14px; line-height: 1; }
  .toggle-track {
    width: 44px;
    height: 26px;
    border-radius: 13px;
    background: var(--toggle-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    position: relative;
    transition: all 0.3s;
  }
  .toggle-knob {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--toggle-knob);
    position: absolute;
    top: 2px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  }
  [data-theme="dark"] .toggle-knob { left: 21px; background: #f5f5f7; }

  /* ===== MAIN LAYOUT ===== */
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 100px;
  }

  .detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
  }

  .left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }

  .right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  /* ===== CARD ===== */
  .card {
    background: var(--card-bg);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
  }
  [data-theme="dark"] .card::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  }

  .card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  .card-title-icon {
    font-size: 18px;
    line-height: 1;
  }

  /* ===== FORM ===== */
  .form-group {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .form-group:last-child { margin-bottom: 0; }

  .form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
    transition: color 0.3s;
  }
  .form-label .required {
    color: #ff453a;
    margin-left: 2px;
  }

  .form-input {
    width: 100%;
    padding: 11px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 17px;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s;
    letter-spacing: -0.2px;
  }
  .form-input:focus {
    outline: none;
    border-color: #04b3d6;
    box-shadow: 0 0 0 3px rgba(4,179,214,0.12);
  }

  .form-textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.6;
    resize: vertical;
    min-height: 130px;
    max-height: 400px;
    transition: all 0.2s;
    overflow-y: auto;
  }
  .form-textarea:focus {
    outline: none;
    border-color: #04b3d6;
    box-shadow: 0 0 0 3px rgba(4,179,214,0.12);
  }

  .form-select {
    width: 100%;
    padding: 10px 32px 10px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238e8e93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: var(--input-bg);
    cursor: pointer;
    transition: all 0.2s;
  }
  .form-select:focus {
    outline: none;
    border-color: #04b3d6;
    box-shadow: 0 0 0 3px rgba(4,179,214,0.12);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }

  /* ===== STATUS BADGE ===== */
  .status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }
  .status-badge.offen      { background: rgba(4,179,214,0.12);   color: #04b3d6; }
  .status-badge.in_arbeit  { background: rgba(255,149,0,0.12);   color: #ff9500; }
  .status-badge.zukuenftig { background: rgba(175,82,222,0.12);  color: #af52de; }
  .status-badge.erledigt   { background: rgba(48,209,88,0.12);   color: #30d158; }
  .status-badge.abgelehnt  { background: rgba(255,69,58,0.12);   color: #ff453a; }

  .prio-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 6px; letter-spacing: 0.3px; text-transform: uppercase; }
  .prio-badge.hoch    { background: rgba(255,69,58,0.12); color: #ff453a; }
  .prio-badge.mittel  { background: rgba(255,149,0,0.12); color: #ff9500; }
  .prio-badge.niedrig { background: rgba(48,209,88,0.12); color: #30d158; }
  .prio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
  }
  .prio-dot.hoch    { background: #ff453a; }
  .prio-dot.mittel  { background: #ff9500; }
  .prio-dot.niedrig { background: #30d158; }

  /* ===== INFO BOX ===== */
  .info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
  }
  .info-row:last-child { border-bottom: none; padding-bottom: 0; }
  .info-row:first-child { padding-top: 0; }
  .info-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .info-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
    transition: color 0.3s;
  }

  /* ===== BUTTONS ===== */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 22px;
    background: #04b3d6;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .btn-primary:hover {
    background: #03a0c0;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4,179,214,0.35);
  }
  .btn-primary:active { transform: translateY(0); }
  .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: var(--toggle-bg);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .btn-secondary:hover {
    background: var(--card-hover-bg);
    color: var(--text-primary);
  }

  .btn-rudi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(4,179,214,0.3);
    background: rgba(4,179,214,0.08);
    color: var(--badge-color);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
  }
  .btn-rudi:hover {
    background: rgba(4,179,214,0.18);
    transform: translateY(-1px);
  }
  .btn-rudi:active { transform: translateY(0); }

  .btn-danger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,69,58,0.2);
    background: rgba(255,69,58,0.07);
    color: #ff453a;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
  }
  .btn-danger:hover {
    background: rgba(255,69,58,0.15);
    transform: translateY(-1px);
  }
  .btn-danger:active { transform: translateY(0); }

  /* ===== ACTION BAR ===== */
  .action-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0 0;
    position: relative;
    z-index: 1;
  }

  /* ===== UPLOAD ZONE ===== */
  .upload-zone {
    border: 2px dashed var(--input-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--input-bg);
    position: relative;
    z-index: 1;
  }
  .upload-zone:hover, .upload-zone.dragover {
    border-color: #04b3d6;
    background: rgba(4,179,214,0.04);
  }
  .upload-zone-icon { font-size: 26px; margin-bottom: 8px; opacity: 0.5; }
  .upload-zone-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
    transition: color 0.3s;
  }
  .upload-zone-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: color 0.3s;
  }

  /* ===== FILE LIST (Neu/Pre-upload) ===== */
  .file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
  }

  .file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--toggle-bg);
    border: 1px solid var(--card-border);
  }
  .file-item-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
  .file-item-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .file-item-size {
    font-size: 11px;
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: color 0.3s;
  }
  .file-item-remove {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 2px;
    border-radius: 4px;
    transition: color 0.2s;
    font-family: inherit;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .file-item-remove:hover { color: #ff453a; }

  /* ===== BILD-GALERIE ===== */
  .gallery-section {
    margin-top: 16px;
    position: relative;
    z-index: 1;
  }
  .gallery-section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .gallery-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--card-border);
  }
  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
    display: block;
  }
  .gallery-thumb:hover img { transform: scale(1.05); }
  .gallery-thumb .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .gallery-thumb:hover .remove-btn { display: flex; }
  .gallery-thumb .remove-btn:hover { background: rgba(255,69,58,0.8); }

  .docs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ===== LIGHTBOX ===== */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .lightbox.open { display: flex; }

  .lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    display: block;
    object-fit: contain;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    transition: background 0.2s;
    line-height: 1;
    z-index: 310;
  }
  .lightbox-nav:hover { background: rgba(255,255,255,0.28); }
  .lightbox-nav.prev { left: 20px; }
  .lightbox-nav.next { right: 20px; }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 310;
  }
  .lightbox-close:hover { opacity: 1; }

  .lightbox-info {
    margin-top: 14px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    display: flex;
    gap: 14px;
    align-items: center;
    font-family: 'Inter', sans-serif;
  }
  .lightbox-info a {
    color: #04b3d6;
    text-decoration: none;
  }
  .lightbox-info a:hover { text-decoration: underline; }

  /* ===== LOADER / ERROR / TOAST ===== */
  .spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--card-border);
    border-top-color: #04b3d6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-secondary);
    font-size: 14px;
  }

  .toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: rgba(28,28,30,0.92);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 400;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    white-space: nowrap;
    pointer-events: none;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast.success { background: rgba(48,209,88,0.92); }
  .toast.error   { background: rgba(255,69,58,0.92); }

  /* ===== BADGE FRESH ===== */
  .badge-fresh {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 110px;
    height: auto;
    opacity: 0.65;
    z-index: 50;
    pointer-events: none;
  }
  [data-theme="dark"] .badge-fresh { filter: invert(1); opacity: 0.45; }

  /* ===== UPLOAD PROGRESS ===== */
  .upload-progress {
    display: none;
    margin-top: 10px;
    position: relative;
    z-index: 1;
  }
  .upload-progress.visible { display: block; }
  .progress-bar-wrap {
    height: 4px;
    background: var(--card-border);
    border-radius: 2px;
    overflow: hidden;
  }
  .progress-bar {
    height: 100%;
    background: #04b3d6;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s;
  }
  .progress-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    transition: color 0.3s;
  }

  /* ===== MOBILE ===== */
  @media (max-width: 860px) {
    .detail-grid {
      grid-template-columns: 1fr;
    }
    .right-col {
      order: -1;
    }
  }

  @media (max-width: 600px) {
    nav { padding: 0 12px; }
    .nav-subtitle { display: none; }
    .nav-divider { display: none; }
    .nav-right { gap: 6px; }
    .back-btn span { display: none; }

    .container { padding: 24px 14px 80px; }
    .card { padding: 20px 18px; }

    .form-row { grid-template-columns: 1fr; }

    .action-bar {
      flex-direction: column;
      align-items: stretch;
    }
    .action-bar .btn-primary { width: 100%; }
    .action-bar .btn-secondary { width: 100%; text-align: center; }

    .lightbox-nav { font-size: 26px; padding: 10px 14px; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
  }


/* === Auto-generierte Klassen aus inline style="..." (detail.html, 5 unique) === */
.s-a2d48c { margin-bottom:0; }
.s-3f887f { display:none; margin-top:12px; }
.s-93b8ea { display:none; }
.s-93e464 { text-align:center; margin-bottom:16px; position:relative; z-index:1; }
.s-e545c0 { display:flex; flex-direction:column; gap:10px; }


/* === Auto-Klassen aus inline style="..." in detail.js (3 unique) === */
.s-96c8e9 { color:#ff453a;font-size:14px; }
.s-55f7d2 { color:var(--badge-color);font-size:16px;text-decoration:none; }
.s-db2f84 { width:32px;height:32px;border-radius:6px;object-fit:cover;flex-shrink:0; }
