/* Page article v2 — design system index-v2 / rubriques v2 */

/* Bandeau fil d'Ariane (fond gris, ligne en dessous) + bouton AI War Room à droite */
.art-v2-breadcrumb-bar {
  background: #f5f5f7;
  border-bottom: 1px solid #e4e4ec;
}
.art-v2-breadcrumb-bar .w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.art-v2-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 14px 0 12px;
  color: #7a7a7a;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}
.art-v2-war-room-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fce4ec;
  color: #c62828;
  font-size: 12px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.art-v2-war-room-btn:hover {
  background: #f8bbd0;
  color: #b71c1c;
}
.art-v2-breadcrumb a {
  color: #7a7a7a;
  transition: color 0.2s;
  flex-shrink: 0;
}
.art-v2-breadcrumb a:hover {
  color: #55556a;
}
.art-v2-breadcrumb-sep {
  margin: 0 8px;
  color: #7a7a7a;
  flex-shrink: 0;
}
.art-v2-breadcrumb-current {
  color: #31548e;
  font-weight: 500;
  max-width: 60ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 0%;
  min-width: 0;
}

@media (max-width: 768px) {
  .art-v2-breadcrumb-bar .w {
    gap: 10px;
  }
  .art-v2-breadcrumb {
    font-size: 12px;
    padding: 10px 0;
  }
  .art-v2-breadcrumb-current {
    max-width: 18ch;
  }
}

.art-v2-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 24px 0 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .art-v2-layout {
    grid-template-columns: 1fr;
  }
}

.art-v2-main {
  min-width: 0;
}

.art-v2-loading {
  padding: 32px;
  text-align: center;
  color: var(--t3);
  font-size: 14px;
}

/* En-tête article : catégorie, titre, meta, image */
.art-v2-header-wrap {
  margin-bottom: 24px;
}
.art-v2-category {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #798214;
  margin-bottom: 10px;
}
.art-v2-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--t1);
  margin-bottom: 14px;
}
.art-v2-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--t3);
  margin-bottom: 20px;
}
.art-v2-meta time { font-weight: inherit; text-decoration: none; }
.art-v2-meta-updated { color: var(--t3); opacity: 0.9; }
.art-v2-updated-notice {
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  margin: 0 0 1rem 0;
  font-style: italic;
  text-align: right;
}
.art-v2-updated-notice time { font-style: normal; }
.art-v2-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

/* Hero overlay (Deep Dive) : sur desktop, ordre visuel titre puis image */
.art-v2-hero-wrap {
  margin-bottom: 24px;
}
.art-v2-hero-wrap--overlay {
  display: flex;
  flex-direction: column;
}
.art-v2-hero-wrap--overlay .art-v2-hero-img {
  order: 2;
  margin-bottom: 0;
}
.art-v2-hero-wrap--overlay .art-v2-hero-overlay {
  display: none;
}
.art-v2-hero-wrap--overlay .art-v2-hero-content {
  order: 1;
  margin-bottom: 0;
}

/* Mobile : titre + meta par-dessus l'image avec fond grisé pour lisibilité */
@media (max-width: 768px) {
  .art-v2-hero-wrap--overlay {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    order: unset;
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 38, 0.75);
    pointer-events: none;
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-content {
    position: relative;
    z-index: 1;
    order: unset;
    padding: 20px 16px 24px;
    color: #fff;
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-content .art-v2-category {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-content .art-v2-title {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    margin-bottom: 10px;
  }
  .art-v2-hero-wrap--overlay .art-v2-hero-content .art-v2-meta {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
  }
}
.art-v2-summary-wrap {
  margin-bottom: 0;
}
.art-v2-summary-structured {
  margin-bottom: 1.5rem;
  padding: 1rem 0 0 0;
  border-top: 1px solid var(--bdr);
}
.art-v2-summary-structured-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}
.art-v2-tldr {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  color: var(--text);
}
.art-v2-summary-meta-list {
  margin: 0 0 0.75rem 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
}
.art-v2-summary-meta-list li { margin-bottom: 0.25rem; }
.art-v2-summary-full {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  margin-top: 0.5rem;
}
.art-v2-summary-full :first-child { margin-top: 0; }
.art-v2-tldr-end {
  margin-top: 28px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  background: var(--art-v2-tldr-bg, rgba(0, 0, 0, 0.02));
  border-left: 3px solid var(--art-v2-tldr-accent, rgba(0, 0, 0, 0.12));
  box-shadow: none;
}
.art-v2-tldr-end .art-v2-faq-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text);
}
.art-v2-tldr-end-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.art-v2-tldr-end-body:not(.art-v2-tldr-html) { white-space: pre-line; }
.art-v2-tldr-html p { margin: 0.35em 0; }
.art-v2-tldr-html p:first-child { margin-top: 0; }
.art-v2-tldr-html ul, .art-v2-tldr-html ol { margin: 0.5em 0; padding-left: 1.5em; }
.art-v2-tldr-html li { margin: 0.2em 0; }
.art-v2-tldr-html strong, .art-v2-tldr-html b { font-weight: 700; }
.art-v2-tldr-html em, .art-v2-tldr-html i { font-style: italic; }
.art-v2-faq {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr);
}
.art-v2-faq-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--text);
}
.art-v2-faq-details {
  margin-top: 0.75rem;
  border: 1px solid var(--bdr);
  border-radius: 6px;
  overflow: hidden;
}
.art-v2-faq-details:first-of-type { margin-top: 0; }
.art-v2-faq-details:first-of-type .art-v2-faq-q { margin-top: 0; }
.art-v2-faq-details[open] .art-v2-faq-q { margin-bottom: 0.25rem; }
.art-v2-faq-q {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.35rem 0;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  list-style: none;
  user-select: none;
}
.art-v2-faq-q::-webkit-details-marker { display: none; }
.art-v2-faq-q::marker { content: none; }
.art-v2-faq-q::before {
  content: "＋ ";
  font-weight: 400;
  opacity: 0.7;
}
.art-v2-faq-details[open] .art-v2-faq-q::before { content: "− "; }
.art-v2-faq-q:first-of-type { margin-top: 0; }
.art-v2-faq-a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted, #6b7280);
  margin: 0 0 0.5rem 0;
  padding: 0 0.75rem 0.75rem;
}
.art-v2-faq-details .art-v2-faq-a { margin-top: 0; }
.art-v2-faq-a p { margin: 0; }
h3.art-v2-summary-label,
.art-v2-summary-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #6b7280);
  margin: 0 0 0.35rem 0;
}
h3.art-v2-summary,
.art-v2-summary {
  font-size: 16px;
  line-height: 1.55;
  color: var(--t1);
  margin: 0 0 0.25rem 0;
  padding: 18px 0 0 0;
  border-top: 1px solid var(--bdr);
  font-weight: 600;
}

/* Corps de l'article */
.art-v2-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--t1);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.art-v2-body .art-v2-content-inner,
.art-v2-body .art-v2-summary-full {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
.art-v2-body .art-v2-content-inner blockquote,
.art-v2-body .art-v2-content-inner [class*="quote"],
.art-v2-body .art-v2-content-inner [class*="signal"] {
  overflow-x: visible;
  white-space: normal;
  max-width: 100%;
}
.art-v2-body p {
  margin-bottom: 1em;
}
.art-v2-body p:last-child {
  margin-bottom: 0;
}
.art-v2-body h1, .art-v2-body h2, .art-v2-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--t1);
  margin: 1.75em 0 0.6em;
}
.art-v2-body h1 { font-size: 1.5em; }
.art-v2-body h2 { font-size: 1.3em; }
.art-v2-body h3 { font-size: 1.15em; }
.art-v2-body h1:first-child,
.art-v2-body h2:first-child,
.art-v2-body h3:first-child {
  margin-top: 0;
}
.art-v2-body ul, .art-v2-body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.art-v2-body li {
  margin: 0.35em 0;
}
.art-v2-body blockquote {
  margin: 1.5em 0;
  padding-left: 1.25em;
  border-left: 3px solid var(--yellow);
  color: var(--t2);
  font-style: italic;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
.art-v2-body blockquote p {
  white-space: normal;
}
.art-v2-body pre, .art-v2-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
}
.art-v2-body pre {
  background: var(--bg4);
  padding: 1em;
  border-radius: 8px;
  margin: 1.25em 0;
  border: 1px solid var(--bdr);
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  overflow-x: visible;
}
.art-v2-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.25em 0;
  display: block;
}

/* Tags */
.art-v2-sources {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr);
}
.art-v2-sources-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}
.art-v2-sources-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.art-v2-sources-list li {
  margin-bottom: 6px;
}
.art-v2-source-link {
  color: var(--accent);
  text-decoration: none;
}
.art-v2-source-link:hover {
  text-decoration: underline;
}
.art-v2-source-label {
  font-style: italic;
}
.art-v2-source-title {
  color: var(--text);
}

.art-v2-tags-wrap {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr);
}
.art-v2-tags-wrap .stitle {
  margin-bottom: 10px;
}
.art-v2-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.art-v2-tag {
  display: inline-block;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--t3);
  background: var(--bg3);
  border: 1px solid var(--yellow);
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  pointer-events: none;
  cursor: default;
}
.art-v2-tag:hover {
  background: var(--bg3);
  color: var(--t3);
}

/* Sidebar */
.art-v2-sidebar {
  position: sticky;
  top: 70px;
}
.art-v2-sidebar-block {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}
h4.stitle { margin-top: 0; }
.art-v2-sidebar-block .stitle {
  margin-bottom: 14px;
}
.art-v2-deals-block {
  margin-top: 16px;
}
.art-v2-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.art-v2-related-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.art-v2-related-item:last-child {
  border-bottom: none;
}
.art-v2-related-item:hover {
  background: var(--bgH);
}
.art-v2-related-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--bg4);
  object-fit: cover;
}
.art-v2-related-info {
  flex: 1;
  min-width: 0;
}
.art-v2-related-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-v2-related-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--t3);
  margin-top: 4px;
}

/* Bloc levées & acquisitions liées au secteur */
.art-v2-deals-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.art-v2-deal-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--bdr);
}
.art-v2-deal-item:last-child {
  border-bottom: none;
}
.art-v2-deal-m7 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid #facc15;
  color: #f59e0b;
  margin-right: 4px;
  min-width: 34px;
  text-align: center;
}
.art-v2-deal-body {
  flex: 1;
  min-width: 0;
}
.art-v2-deal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.art-v2-deal-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.4;
}
.art-v2-deal-country {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--t3);
  margin-right: 4px;
}
.art-v2-deal-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #798214;
  white-space: nowrap;
}
.art-v2-deal-meta {
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--t3);
}
.art-v2-deal-investors {
  margin-top: 4px;
  font-size: 10px;
  color: var(--t3);
}

.art-v2-error {
  padding: 32px;
  text-align: center;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  color: var(--t2);
}
.art-v2-error h1,
.art-v2-error .art-v2-error-title {
  font-size: 18px;
  color: var(--t1);
  margin-bottom: 10px;
  font-weight: 600;
}
.art-v2-error a {
  color: var(--red);
  text-decoration: underline;
}

/* ------------------------------------------------------------------------- */
/* Bloc "À explorer aussi" — 3 cartes de maillage en bas d'article           */
/* ------------------------------------------------------------------------- */

.art-v2-more-sec {
  padding: 8px 0 40px;
}

.art-v2-more-inner {
  background: transparent;
}

.art-v2-more-inner .stitle {
  margin-bottom: 14px;
}

.art-v2-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .art-v2-more-grid {
    grid-template-columns: 1fr;
  }
}

.art-v2-more-card {
  background: var(--bg3);
  border-radius: 12px;
  border: 1px solid var(--bdr);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-v2-more-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

h4.art-v2-more-card-title,
.art-v2-more-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  margin: 0;
}

.art-v2-more-card-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

/* Couleurs CTA par carte */
.art-v2-more-cta-war {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.3);
}
.art-v2-more-cta-war:hover {
  background: rgba(239, 68, 68, 0.14);
}

.art-v2-more-cta-rubrique {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.3);
}
.art-v2-more-cta-rubrique:hover {
  background: rgba(37, 99, 235, 0.14);
}

.art-v2-more-cta-deep {
  background: rgba(147, 51, 234, 0.08);
  color: #7e22ce;
  border-color: rgba(147, 51, 234, 0.3);
}
.art-v2-more-cta-deep:hover {
  background: rgba(147, 51, 234, 0.14);
}

.art-v2-more-card-body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--t2);
}

.art-v2-inline-links {
  font-size: 13px;
  margin: 12px 0 24px;
  padding-bottom: 12px;
  color: var(--t2);
  border-bottom: 1px solid var(--bdr);
}

.art-v2-inline-links .art-v2-more-link {
  color: #2563eb;
  text-decoration: none;
}
.art-v2-inline-links .art-v2-more-link:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------------------- */
/* Sous-bloc Power Index : liste dans la sidebar                             */
/* ------------------------------------------------------------------------- */

.art-v2-power-block {
  margin-top: 16px;
}

.art-v2-power-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.art-v2-power-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
  text-decoration: none;
  background: rgba(37, 99, 235, 0.06);
}

.art-v2-power-cta:hover {
  background: rgba(37, 99, 235, 0.12);
}

.art-v2-power-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-v2-power-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.art-v2-power-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--t2);
  width: 18px;
}

.art-v2-power-main {
  flex: 1;
  min-width: 0;
}

.art-v2-power-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.art-v2-power-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0;
}

.art-v2-power-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--t3);
  margin-bottom: 0;
}

.art-v2-power-region {
  text-transform: uppercase;
}

.art-v2-power-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
}

.art-v2-power-delta {
  color: #059669;
}

.art-v2-power-region-pill {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 9px;
  text-transform: uppercase;
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.04);
}

.art-v2-power-item--low .art-v2-power-bar-fill {
  background: rgba(239, 68, 68, 0.9);
}
.art-v2-power-item--med .art-v2-power-bar-fill {
  background: rgba(245, 158, 11, 0.95);
}
.art-v2-power-item--high .art-v2-power-bar-fill {
  background: rgba(22, 163, 74, 0.95);
}
.art-v2-power-item--neutral .art-v2-power-bar-fill {
  background: rgba(148, 163, 184, 0.9);
}

.art-v2-power-bar-wrap {
  margin-top: 2px;
}

.art-v2-power-bar-bg {
  width: 66%;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.art-v2-power-bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  background: rgba(22, 163, 74, 0.95);
}

/* Mini-listes dans les cartes "À explorer aussi" */
.art-v2-more-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.art-v2-more-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 8px 0;
  border-bottom: 1px solid var(--bdr);
}

.art-v2-more-mini-item:last-child {
  border-bottom: none;
}

.art-v2-more-mini-thumb {
  width: 56px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--bg4);
}

.art-v2-more-mini-body {
  flex: 1;
  min-width: 0;
}

.art-v2-more-mini-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-v2-more-mini-meta {
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--t3);
}

/* Preview AI War Room (capture + 3 signaux) */
.art-v2-warroom-preview-img {
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  background-image: url('/ai-war-room-preview.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  border: 1px solid var(--bdr);
}

.art-v2-warroom-preview-link {
  display: block;
}

.art-v2-war-feed-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.art-v2-war-feed-line {
  flex: 1;
  height: 1px;
  background: rgba(148, 27, 59, 0.6);
}

.art-v2-war-feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.8);
}

.art-v2-war-feed-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ef4444;
}

.art-v2-war-feed-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.art-v2-war-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.art-v2-war-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--t3);
}

.art-v2-war-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--t1);
  text-decoration: none;
}

.art-v2-war-title:hover {
  text-decoration: underline;
}

/* Carte Magnificent 7+1 en bas d'article */
.art-v2-m7-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.art-v2-m7-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.art-v2-m7-logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.art-v2-m7-logo-wrap img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.art-v2-m7-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.art-v2-m7-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.art-v2-m7-ticker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
}

.art-v2-m7-valuation {
  font-size: 20px;
  font-weight: 700;
  margin-top: 6px;
  text-align: center;
  color: #798214;
}

.art-v2-m7-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-v2-m7-line {
  font-size: 14px;
  line-height: 1.5;
}

.art-v2-m7-line-label {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.art-v2-m7-line-value a {
  color: var(--t1);
  text-decoration: none;
}

.art-v2-m7-line-value a:hover {
  text-decoration: underline;
}

/* Zoom image au clic (mobile) */
.art-v2-image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}
.art-v2-image-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.art-v2-image-zoom-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.art-v2-image-zoom-close:hover {
  background: #fff;
  color: #000;
}
.art-v2-image-zoom-content {
  position: relative;
  z-index: 2001;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-v2-image-zoom-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
@media (min-width: 769px) {
  .art-v2-image-zoom-modal { display: none !important; }
}



