/* SEL.IA — "Busca Integrada" didactic + dynamic demo (área Regulatória).
   Narrated flow: pesquisa → varre fontes → 3 visões → processo unificado.
   Fixed scene 1200×700, light. */

.bi-scene {
  position: relative; width: 1200px; height: 700px;
  background: #f6f7f9; border-radius: 16px; overflow: hidden;
  font-family: var(--font-sans, "Outfit", system-ui, sans-serif);
  box-shadow: 0 30px 70px rgba(8,18,35,0.18);
  display: flex; flex-direction: column;
}

/* header */
.bi-head { background: #fff; padding: 20px 28px 18px; border-bottom: 1px solid #eef0f2; flex-shrink: 0; }
.bi-title { display: flex; align-items: center; gap: 13px; }
.bi-title .ico { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; display: flex; align-items: center; justify-content: center; }
.bi-title .t { font-size: 23px; font-weight: 800; color: #102b4e; letter-spacing: -0.02em; }
.bi-title .s { font-size: 12px; color: #9aa0a6; margin-top: 1px; }

.bi-searchrow { display: flex; gap: 12px; margin-top: 16px; }
.bi-search { flex: 1; display: flex; align-items: center; gap: 11px; background: #fff; border: 2px solid #e6e7e8; border-radius: 12px; padding: 14px 16px; font-size: 16px; color: #102b4e; transition: border-color 200ms ease, box-shadow 200ms ease; }
.bi-search.focus { border-color: rgba(217,25,101,0.55); box-shadow: 0 0 0 4px rgba(217,25,101,0.10); }
.bi-search .ph { color: #9aa0a6; }
.bi-btn-buscar { background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; font-size: 15px; font-weight: 700; padding: 0 28px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(217,25,101,0.28); }
.bi-btn-buscar.click { animation: bi-click 760ms ease-out; }
@keyframes bi-click { 0%{box-shadow:0 0 0 0 rgba(217,25,101,0.5),0 6px 16px rgba(217,25,101,0.28);} 100%{box-shadow:0 0 0 16px rgba(217,25,101,0),0 6px 16px rgba(217,25,101,0.28);} }

/* didactic caption bar */
.bi-caption { display: flex; align-items: center; gap: 13px; padding: 16px 28px; flex-shrink: 0; }
.bi-stepnum { width: 30px; height: 30px; border-radius: 9999px; background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(217,25,101,0.3); }
.bi-steptext { font-size: 18px; font-weight: 700; color: #102b4e; letter-spacing: -0.01em; animation: bi-fade 400ms ease; }
@keyframes bi-fade { from{opacity:0; transform: translateY(4px);} to{opacity:1; transform:none;} }
.bi-resbadge { margin-left: auto; font-size: 13px; color: #5a6068; background: #fff; border: 1px solid #eef0f2; border-radius: 9999px; padding: 7px 15px; }
.bi-resbadge b { color: #d91965; font-size: 15px; }
.bi-viewtabs { display: flex; align-items: center; gap: 6px; padding: 0 28px; margin-top: 4px; flex-shrink: 0; }
.bi-viewtabs-lbl { font-size: 12px; font-weight: 700; color: #9aa0a6; margin-right: 4px; }
.bi-viewtab { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #5a6068; background: #fff; border: 1.5px solid #e6e7e8; border-radius: 10px; padding: 8px 14px; cursor: pointer; transition: all 180ms ease; }
.bi-viewtab:hover { border-color: rgba(217,25,101,0.4); color: #102b4e; }
.bi-viewtab.on { background: #102b4e; color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(16,43,78,0.25); }

/* body / panes */
.bi-body { flex: 1; min-height: 0; position: relative; padding: 4px 28px 26px; }
.bi-pane { position: absolute; inset: 4px 28px 26px; opacity: 0; transition: opacity 380ms ease; pointer-events: none; }
.bi-pane.show { opacity: 1; pointer-events: auto; }

/* STEP 2 — scan source cards */
.bi-scan { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-content: center; }
.bi-scard { background: #fff; border: 2px solid #eef0f2; border-radius: 16px; padding: 22px 16px; text-align: center; transition: border-color 360ms ease, transform 360ms ease, box-shadow 360ms ease; transform: translateY(6px); }
.bi-scard.on { transform: translateY(0); box-shadow: 0 14px 34px rgba(8,18,35,0.10); }
.bi-scard-ico { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px; background: #f0f1f3; color: #aab0b6; display: flex; align-items: center; justify-content: center; transition: all 360ms ease; }
.bi-scard.on .bi-scard-ico { animation: bi-pop 500ms cubic-bezier(0.34,1.56,0.64,1); }
@keyframes bi-pop { 0%{transform:scale(0.7);} 60%{transform:scale(1.12);} 100%{transform:scale(1);} }
.bi-scard-label { font-size: 13px; font-weight: 700; color: #102b4e; }
.bi-scard-count { font-size: 34px; font-weight: 800; color: #c3c8cf; letter-spacing: -0.02em; margin: 8px 0 2px; line-height: 1; }
.bi-scard-sub { font-size: 10.5px; color: #9aa0a6; }

/* STEP 3a — LISTA (big friendly cards) */
.bi-lista2 { display: flex; flex-direction: column; gap: 13px; justify-content: center; }
.bi-card2 { display: flex; align-items: center; gap: 15px; background: #fff; border: 1px solid #eef0f2; border-radius: 14px; padding: 18px 20px; box-shadow: 0 6px 18px rgba(8,18,35,0.05); animation: bi-rowin 440ms cubic-bezier(0.22,1,0.36,1) both; }
@keyframes bi-rowin { from{opacity:0; transform: translateY(12px);} to{opacity:1; transform:none;} }
.bi-card2-ico { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: rgba(217,25,101,0.10); color: #d91965; display: flex; align-items: center; justify-content: center; }
.bi-card2-main { flex: 1; min-width: 0; }
.bi-card2-main .pn { font-size: 17px; font-weight: 800; color: #102b4e; }
.bi-card2-main .tipo { font-size: 12.5px; color: #5a6068; margin-top: 3px; }
.bi-card2-badges { display: flex; gap: 7px; }
.bi-srcdot { width: 30px; height: 30px; border-radius: 9px; color: #fff; display: flex; align-items: center; justify-content: center; }

/* STEP 3b — TIMELINE (clean single track each) */
.bi-tl2 { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.bi-tl2-row { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: center; }
.bi-tl2-label { font-size: 15px; font-weight: 700; color: #102b4e; }
.bi-tl2-track { position: relative; height: 34px; }
.bi-tl2-line { position: absolute; left: 0; right: 0; top: 50%; height: 3px; background: #e6e7e8; transform: translateY(-50%); border-radius: 9999px; }
.bi-tl2-dot { position: absolute; top: 50%; transform: translate(-50%,-50%) scale(0); width: 32px; height: 32px; border-radius: 9999px; color: #fff; display: flex; align-items: center; justify-content: center; border: 3px solid #fff; box-shadow: 0 3px 9px rgba(8,18,35,0.18); transition: transform 420ms cubic-bezier(0.34,1.56,0.64,1); }
.bi-tl2-dot.show { transform: translate(-50%,-50%) scale(1); }

/* STEP 3c — GRAFO (fewer, bigger, labeled) */
.bi-graph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bi-gcenter { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: #fff; border: 2.5px solid #d91965; border-radius: 14px; padding: 14px 18px; z-index: 3; box-shadow: 0 14px 34px rgba(217,25,101,0.22); text-align: center; min-width: 240px; }
.bi-gcenter .pn { font-size: 15px; font-weight: 800; color: #102b4e; }
.bi-gcenter .lbl { font-size: 11px; color: #d91965; font-weight: 600; margin-top: 4px; }
.bi-gcenter.click { animation: bi-centerclick 700ms ease-out; border-color: #d91965; }
@keyframes bi-centerclick {
  0% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 14px 34px rgba(217,25,101,0.22); }
  40% { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 0 0 8px rgba(217,25,101,0.18), 0 14px 34px rgba(217,25,101,0.3); }
  100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 14px 34px rgba(217,25,101,0.22); }
}
.bi-gcenter.click::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 30px; height: 30px;
  margin: -15px 0 0 -15px; border-radius: 9999px; border: 2px solid #d91965;
  animation: bi-tapring 700ms ease-out forwards; pointer-events: none;
}
@keyframes bi-tapring { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(3.4); opacity: 0; } }
.bi-gnode2 { position: absolute; transform: translate(-50%,-50%) scale(0.8); background: #fff; border: 1px solid #e6e7e8; border-radius: 10px; padding: 9px 13px; z-index: 2; font-size: 12px; font-weight: 700; color: #1f6cd9; white-space: nowrap; box-shadow: 0 5px 14px rgba(8,18,35,0.10); opacity: 0; transition: opacity 400ms ease, transform 400ms cubic-bezier(0.34,1.56,0.64,1); }
.bi-gnode2.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* STEP 4 — unified process modal */
.bi-modal-overlay { position: absolute; inset: 0; z-index: 20; background: rgba(8,18,35,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 260ms ease; }
.bi-modal-overlay.in { opacity: 1; }
.bi-modal { width: 78%; max-width: 680px; background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 70px rgba(8,18,35,0.5); transform: scale(0.88) translateY(16px); opacity: 0; transition: transform 380ms cubic-bezier(0.34,1.4,0.64,1), opacity 300ms ease; }
.bi-modal-overlay.in .bi-modal { transform: none; opacity: 1; }
.bi-modal-head { background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; padding: 17px 22px; display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.bi-modal-head .t { font-size: 17px; font-weight: 800; flex: 1; }
.bi-modal-inner2 { padding: 20px 22px 24px; }
.bi-modal-lead { font-size: 14px; color: #5a6068; margin-bottom: 16px; line-height: 1.5; }
.bi-modal-lead b { color: #102b4e; }
.bi-unicard { display: flex; gap: 13px; align-items: flex-start; background: #fafbfc; border: 1px solid #eef0f2; border-radius: 12px; padding: 14px 16px; margin-bottom: 11px; animation: bi-rowin 460ms cubic-bezier(0.22,1,0.36,1) both; }
.bi-modcard-ico { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bi-unihead { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; }
.bi-unihead .src { font-size: 14px; font-weight: 800; color: #102b4e; }
.bi-unihead .badge { font-size: 11px; font-weight: 800; padding: 2px 10px; border-radius: 9999px; }
.bi-unicard .line { font-size: 12.5px; line-height: 1.5; color: #5a6068; }

/* destination preview popover (right of modal) */
.bi-preview { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 440px; z-index: 22; animation: bi-prevpop 360ms cubic-bezier(0.34,1.56,0.64,1); }
@keyframes bi-prevpop { from { opacity: 0; transform: translateY(-50%) scale(0.9); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
.bi-preview-cap { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bi-preview-cap svg { transform: rotate(180deg); }
.bi-preview-screen { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 44px rgba(8,18,35,0.35); }
.pv-bar { display: flex; align-items: center; gap: 7px; padding: 10px 12px; color: #fff; font-size: 12px; font-weight: 700; }
.pv-body { padding: 13px; display: flex; flex-direction: column; gap: 8px; }
.pv-line { height: 8px; border-radius: 9999px; background: #eef0f2; }
.pv-tag { align-self: flex-start; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 7px; margin: 2px 0; }
.bi-preview-foot { display: flex; align-items: center; gap: 6px; margin-top: 9px; background: #102b4e; color: #fff; font-size: 11px; font-weight: 700; padding: 8px 12px; border-radius: 9px; box-shadow: 0 8px 20px rgba(16,43,78,0.3); }
.bi-preview-foot svg { transform: rotate(45deg); }
.bi-uniopen { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; margin-top: 7px; }
.bi-unicard { cursor: pointer; transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; align-items: center; }
.bi-unicard:hover { border-color: rgba(16,43,78,0.25); box-shadow: 0 8px 22px rgba(8,18,35,0.08); transform: translateY(-1px); }
.bi-unicta { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 800; padding: 11px 16px; border-radius: 10px; white-space: nowrap; box-shadow: 0 8px 20px rgba(8,18,35,0.18); animation: bi-cta-pulse 1800ms ease-in-out infinite; }
@keyframes bi-cta-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.bi-unicard:hover .bi-unicta { filter: brightness(1.08); }

/* full-screen module view (result of clicking a block) */
.bi-full { position: absolute; inset: 0; z-index: 30; background: #fff; display: flex; flex-direction: column; animation: bi-full-in 380ms cubic-bezier(0.22,1,0.36,1); }
@keyframes bi-full-in { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.bi-full-bar { display: flex; align-items: center; gap: 11px; padding: 14px 20px; color: #fff; flex-shrink: 0; }
.bi-full-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,0.18); padding: 7px 13px; border-radius: 9px; cursor: pointer; transition: background 160ms ease; }
.bi-full-back:hover { background: rgba(255,255,255,0.32); }
.bi-full-title { font-size: 17px; font-weight: 800; }
.bi-full-tag { margin-left: auto; font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.16); padding: 6px 12px; border-radius: 9999px; }
.bi-full-img { flex: 1; min-height: 0; overflow: hidden; background: #f6f7f9; }
.bi-full-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; object-position: top center; }
/* native module mockup */
.fm { display: flex; height: 100%; background: #f6f7f9; font-size: 14px; }
.fm-side { width: 200px; background: #fff; border-right: 1px solid #eef0f2; padding: 16px 12px; flex-shrink: 0; }
.fm-side-h { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #9aa0a6; margin-bottom: 12px; }
.fm-diritem { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 9px; font-size: 13px; font-weight: 600; color: #5a6068; margin-bottom: 4px; }
.fm-diritem.on { background: rgba(217,25,101,0.07); color: #102b4e; }
.fm-av { width: 26px; height: 26px; border-radius: 9999px; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fm-pin { width: 9px; height: 9px; border-radius: 9999px; flex-shrink: 0; }
.fm-main { flex: 1; min-width: 0; padding: 20px 26px; overflow: hidden; }
.fm-crumb { font-size: 12px; color: #9aa0a6; margin-bottom: 8px; }
.fm-h1 { font-size: 22px; font-weight: 800; color: #102b4e; letter-spacing: -0.02em; }
.fm-tags { display: flex; gap: 7px; flex-wrap: wrap; margin: 10px 0 14px; }
.fm-tag { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 9999px; }
.fm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.fm-card { background: #fff; border: 1px solid #eef0f2; border-radius: 11px; padding: 13px 15px; }
.fm-k { font-size: 11.5px; color: #9aa0a6; }
.fm-v { font-size: 15px; font-weight: 700; color: #102b4e; margin-top: 3px; }
.fm-sec { font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #5a6068; margin: 8px 0 10px; }
.fm-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #3a4048; background: #fff; border: 1px solid #eef0f2; border-radius: 10px; padding: 11px 14px; margin-bottom: 7px; }
.fm-row b { color: #102b4e; }
.fm-dot { width: 9px; height: 9px; border-radius: 9999px; flex-shrink: 0; }
.fm-doucard { background: #fff; border: 1px solid #cfe0ff; border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; }
.fm-para { height: 9px; border-radius: 9999px; background: #eef0f2; margin-top: 9px; width: 100%; }
/* faithful module styles */
.fm-dir, .fm-sei, .fm-ses { display: block; padding: 22px 28px; overflow-y: auto; }
.fm-dou { display: flex; }
.fm-sec2 { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800; color: #102b4e; margin: 18px 0 10px; }
.fm-sec2:first-child { margin-top: 0; }
.fm-infobox { background: #f6f7f9; border-radius: 12px; padding: 18px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.fm-ig .fm-k { font-size: 13px; color: #9aa0a6; }
.fm-ig .fm-v { font-size: 15px; font-weight: 700; color: #102b4e; margin-top: 3px; }
.fm-pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 9999px; margin-top: 2px; }
.fm-resumo { background: #fdeef2; border-left: 4px solid #d91965; border-radius: 10px; padding: 16px 18px; font-size: 14px; line-height: 1.6; color: #3a4048; }
.fm-resumo-meta { color: #9aa0a6; font-style: italic; margin-top: 10px; }
.fm-rpo { display: flex; align-items: flex-start; padding: 10px 30px 0; }
.fm-rpo-node { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.fm-rpo-line { position: absolute; top: 13px; left: 50%; width: 100%; height: 2px; background: #e6e7e8; }
.fm-rpo-node:last-child .fm-rpo-line { display: none; }
.fm-rpo-dot { width: 26px; height: 26px; border-radius: 9999px; background: #fff; border: 2px solid #d6dadf; z-index: 1; }
.fm-rpo-dot.on { background: #d91965; border-color: #d91965; }
.fm-rpo-lbl { font-size: 13px; color: #9aa0a6; font-weight: 600; }
.fm-rpo-lbl.on { color: #d91965; font-weight: 800; }
.fm-igrow { display: flex; gap: 30px; }
.fm-igrow > div { flex: 1; }
/* DOU */
.fm-dou { display: block; padding: 22px 28px; overflow-y: auto; }
.fm-sugg { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #5a6068; background: #fff; border: 1px solid #eef0f2; border-radius: 9999px; padding: 9px 13px; margin-top: 8px; }
.fm-sugg svg { color: #9aa0a6; flex-shrink: 0; }
.fm-dou-side .fm-k { color: #9aa0a6; }
.fm-dou-input { margin-top: auto; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e6e7e8; border-radius: 11px; padding: 10px 10px 10px 14px; font-size: 12.5px; color: #9aa0a6; }
.fm-dou-input .snd { margin-left: auto; width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fm-ghostbtn { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #5a6068; border: 1px solid #e6e7e8; border-radius: 9px; padding: 8px 12px; }
.fm-doumeta { display: flex; gap: 16px; font-size: 13px; color: #5a6068; margin: 8px 0 14px; }
.fm-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fm-filter { font-size: 12.5px; font-weight: 600; color: #5a6068; background: #f6f7f9; border-radius: 9999px; padding: 6px 13px; }
.fm-filter.on { background: #d91965; color: #fff; }
.fm-filter b { font-weight: 800; }
.fm-doucard { background: #fdeef2; border: 1px solid rgba(217,25,101,0.2); border-left: 4px solid #d91965; border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; }
/* SEI */
.fm-iaico { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg,#d91965,#ef405b); color: #fff; display: flex; align-items: center; justify-content: center; }
.fm-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.fm-stat { background: #fff; border: 1px solid #eef0f2; border-left: 3px solid #d91965; border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.fm-statv { font-size: 26px; font-weight: 800; color: #102b4e; margin-top: 3px; }
.fm-statico { width: 38px; height: 38px; border-radius: 9999px; background: rgba(217,25,101,0.1); color: #d91965; display: flex; align-items: center; justify-content: center; }
.fm-card { background: #fff; border: 1px solid #eef0f2; border-radius: 13px; padding: 16px 18px; margin-bottom: 14px; }
.fm-cardhd { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 15px; font-weight: 800; color: #102b4e; }
.fm-cardhd span { display: inline-flex; align-items: center; gap: 8px; }
/* Sessões */
.fm-sescols { display: flex; gap: 16px; }
.fm-search { font-size: 13px; color: #9aa0a6; background: #f6f7f9; border-radius: 9px; padding: 10px 13px; margin: 10px 0; }
.fm-proc { border: 1px solid #eef0f2; border-radius: 10px; padding: 12px 14px; margin-bottom: 9px; }
.fm-barrow { margin-top: 10px; }
.fm-barlbl { display: flex; justify-content: space-between; font-size: 13px; color: #3a4048; margin-bottom: 5px; }
.fm-bartrack { height: 8px; background: #f0f1f3; border-radius: 9999px; overflow: hidden; }
.fm-bartrack span { display: block; height: 100%; border-radius: 9999px; }
.fm-doutop { display: flex; align-items: center; justify-content: space-between; }
.fm-douintro { background: #eef5ff; border: 1px solid #cfe0ff; border-radius: 12px; padding: 14px 16px; font-size: 13px; line-height: 1.55; color: #2a3a52; margin-bottom: 14px; }
.fm-douintro-meta { display: flex; gap: 16px; margin-top: 9px; font-size: 12px; font-weight: 700; color: #2563eb; }
.fm-cats { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.fm-cat { font-size: 11.5px; font-weight: 600; color: #5a6068; background: #fff; border: 1px solid #eef0f2; border-radius: 9999px; padding: 5px 11px; }