/**
 * DEFCON Level, Content & Editor Styles
 * Command symbol grid, filter toggles, priority filters, alert hero images, editor image handling, and professional content typography.
 *
 * Part of the Defcon site CSS (builds on engine base theme).
 * Load order managed by config/site.php → site_css array.
 */

/* NOTE: .command-symbol-grid, .filter-toggle*, .priority-filter* selectors
   REMOVED S105, duplicated in engine-views.css which loads later and wins cascade.
   Canonical definitions are in engine-views.css. */

/* Alert Hero Image, Featured Image Display.
 * Width + img-fill behavior depends on the alignment modifier the editor
 * picks: alert-hero-image--align-{stretch,left,center,right}. Legacy alerts
 * without the column fall through to stretch via the :not() selector below
 * so existing pages render exactly as before.
 * Workbench-verified 2026-05-23: C:/STORAGE/OSINT_Output/em-test-image-align.png.
 */
.alert-hero-image {
  margin-top: var(--space-2);
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--bg-secondary);
}

/* Stretch (default + legacy fallback): full-bleed breakout from the 900px
 * .alert-content prose column to the layout-content width (1280px max).
 * 'Stretch' means the featured image renders as a hero banner that extends
 * wider than the body prose, matching the design intent and the visual
 * established by the Somali alert (which has a wide native image that
 * accidentally overflowed the column). Now consistent regardless of native
 * image dimensions.
 *
 * The :not() selector keeps legacy alerts (no modifier class) on the same
 * full-bleed rendering, so existing pages get the improved width too.
 *
 * Math: width = min(viewport, 1280px); margin-left + margin-right pull the
 * figure outward symmetrically so it ends up centered on the viewport even
 * though the prose container is narrower. */
.alert-hero-image--align-stretch,
.alert-hero-image:not([class*="alert-hero-image--align-"]) {
  width: min(100vw, 1280px);
  margin-left: calc(50% - min(50vw, 640px));
  margin-right: calc(50% - min(50vw, 640px));
}

.alert-hero-image--align-stretch img,
.alert-hero-image:not([class*="alert-hero-image--align-"]) img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Left / center / right: image keeps its natural size, figure positions
 * it inside the content column. max-width clamps to the column on small
 * screens. display:table shrink-wraps the figure to its image width
 * without losing block flow. */
.alert-hero-image--align-left,
.alert-hero-image--align-center,
.alert-hero-image--align-right {
  width: auto;
  max-width: 100%;
  display: table;
}

.alert-hero-image--align-left  { margin-left: 0;    margin-right: auto; }
.alert-hero-image--align-center { margin-left: auto; margin-right: auto; }
.alert-hero-image--align-right { margin-left: auto; margin-right: 0;    }

.alert-hero-image--align-left img,
.alert-hero-image--align-center img,
.alert-hero-image--align-right img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Same alignment modifiers for the embed / video figure
 * (.alert-hero-media). Embeds + videos default to stretch as well, with
 * the same full-bleed breakout. */
.alert-hero-media--align-stretch,
.alert-hero-media:not([class*="alert-hero-media--align-"]) {
  width: min(100vw, 1280px);
  margin-left: calc(50% - min(50vw, 640px));
  margin-right: calc(50% - min(50vw, 640px));
}

.alert-hero-media--align-left,
.alert-hero-media--align-center,
.alert-hero-media--align-right {
  width: auto;
  max-width: 100%;
  display: table;
}

.alert-hero-media--align-left  { margin-left: 0;    margin-right: auto; }
.alert-hero-media--align-center { margin-left: auto; margin-right: auto; }
.alert-hero-media--align-right { margin-left: auto; margin-right: 0;    }

/* Caption strip, flush under image, single line style */
.alert-hero-image .image-caption {
  padding: 6px var(--space-4);
  background: var(--bg-tertiary, #1a1a24);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin: 0;
  border-radius: 0;
}

.alert-hero-image .image-caption p {
  margin: 0;
  display: inline;
}

.alert-hero-image .image-caption .image-credit {
  display: inline;
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0.7;
  margin: 0;
  margin-left: 0.5em;
}

/* Compact share bar, sits directly under featured image */
.share-bar-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.5rem var(--space-4);
  background: var(--bg-tertiary, #1a1a24);
  border-radius: 0 0 12px 12px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: var(--space-4);
}

.share-bar-compact .share-bar-compact__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.share-bar-compact .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  text-decoration: none;
  padding: 0;
}

.share-bar-compact .share-btn:hover {
  color: var(--accent-primary);
  background: rgba(14, 165, 233, 0.1);
}

.share-bar-compact .share-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .alert-hero-image {
    border-radius: 8px 8px 0 0;
  }
  .share-bar-compact {
    border-radius: 0 0 8px 8px;
    gap: var(--space-2);
  }
}

.alert-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  /* Matched to editor for WYSIWYG consistency */
  margin-top: 0;
}

.alert-content p:first-child {
  margin-top: 0;
}

.alert-content p:last-child {
  margin-bottom: 0;
}

/* Empty paragraphs should collapse - they are editor structural elements, not content */
.alert-content p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
}

/* Paragraphs adjacent to images - no extra margin needed */
.alert-content .editor-image-wrapper+p:empty,
.alert-content figure+p:empty,
.alert-content p:empty+.editor-image-wrapper,
.alert-content p:empty+figure {
  display: none;
}

/* Responsive images in alert content */
.alert-content img,
.alert-content-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 8px;
  margin: 0.5rem 0;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Substack-pasted HTML routinely ships with style="opacity: 0.5"
     (their loading-state indicator that stuck on the saved HTML).
     Force opacity back to 1 so pasted images aren't semi-transparent. */
  opacity: 1 !important;
}

.alert-content img:hover,
.alert-content-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Center images */
.alert-content p:has(img),
.alert-content>img {
  text-align: center;
  margin: 0.5rem 0;
}

.alert-content p img {
  margin: 0 auto;
}

/* === Image alignment classes (TinyMCE image-properties → "Class") ===
   Substack-pasted HTML wraps images: <figure><a><picture><img>. <a> and
   <picture> are inline by default, so width:100% on the <img> alone is
   bounded by an inline parent and never reaches the article width.
   The wrapper chain must also be block + 100% before img-full can fill. */
.alert-content figure { display: block; margin: 1rem 0; }
.alert-content figure > a,
.alert-content figure > a > picture,
.alert-content figure > picture,
.alert-content picture { display: block; }

.alert-content img.img-original {
  width: auto !important;
  max-width: 100%;
  margin: 1rem auto;
  display: block;
}
.alert-content img.img-full {
  width: 100% !important;
  max-width: 100%;
  margin: 1rem 0;
  display: block;
}
.alert-content img.img-center {
  display: block;
  margin: 1rem auto !important;
  max-width: 100%;
}
.alert-content img.img-left {
  float: left;
  margin: 0.25rem 1rem 0.5rem 0 !important;
  max-width: 50%;
}
.alert-content img.img-right {
  float: right;
  margin: 0.25rem 0 0.5rem 1rem !important;
  max-width: 50%;
}

/* Promote ALL ancestor wrappers to block + 100% when contained img wants
   full width. Uses descendant selectors (not >) because the wrapper chain
   varies: image-lightbox.js injects a `.lightbox-zoom-wrapper` div between
   <a> and <picture> AT RUNTIME (after page load), and Substack-pasted HTML
   sometimes adds `.captioned-image-container` / `.image2-inset` divs too.
   Direct-child selectors miss any of these intermediate divs.
   Verified via workbench render (img-lightbox-wrapper-fix preview). */
.alert-content figure:has(img.img-full),
.alert-content figure:has(img.img-full) a,
.alert-content figure:has(img.img-full) picture,
.alert-content figure:has(img.img-full) .lightbox-zoom-wrapper,
.alert-content figure:has(img.img-full) .captioned-image-container,
.alert-content figure:has(img.img-full) .image2-inset {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* No-<figure> path: the alert pipeline emits
   <p data-slot-rendered-content><div.lightbox-zoom-wrapper><img.img-full>
   with NO <figure> ancestor, so the figure:has() rule above never matches.
   image-lightbox.js leaves the bare wrapper at its default inline-block, which
   shrink-wraps to the image's intrinsic width, so img-full's width:100%
   resolves against the collapsed box instead of the article column.
   Promote the wrapper directly. Scoped to a direct img.img-full child so
   img-center / img-original wrappers (handled below) are untouched.
   Verified: P3.0 live measurement + harness (602px -> 892px column),
   al-Shabaab alert, 2026-05-16 (S841). */
.alert-content .lightbox-zoom-wrapper:has(> img.img-full) {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* For img-center / img-original, keep wrappers as inline-block (intrinsic
   width) and center via text-align on the figure. */
.alert-content figure:has(img.img-center),
.alert-content figure:has(img.img-original) { text-align: center; }
.alert-content figure:has(img.img-center) .lightbox-zoom-wrapper,
.alert-content figure:has(img.img-original) .lightbox-zoom-wrapper {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.alert-content p::after,
.alert-content figure::after { content: ""; display: table; clear: both; }

/* Editor image wrappers - proper spacing and centering */
.alert-content .editor-image-wrapper {
  display: block;
  margin: 0.75rem auto;
  /* Tighter spacing */
  padding: 0;
  text-align: center;
  max-width: 100%;
}

/* Reset default figure/figcaption spacing (editor-image-wrapper IS a figure element) */
.alert-content figure.editor-image-wrapper {
  margin: 0.75rem auto;
  /* Tighter spacing */
  padding: 0;
  border: none;
}

.alert-content figure.editor-image-wrapper figcaption {
  margin: 0;
  padding: 0;
}

/* General figure captions, photo-caption style */
.alert-content figure figcaption {
  font-size: 0.82em;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4em;
  line-height: 1.4;
}

/* Map iframe figures, overlay caption inside the map area */
.alert-content figure:has(iframe) {
  position: relative;
  margin: 1em 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.alert-content figure:has(iframe) figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.7em;
  font-style: normal;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 12, 18, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 20px;
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
  z-index: 1000;
  margin-top: 0;
  border-radius: 0 0 4px 4px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Center alignment by default */
.alert-content .editor-image-wrapper[data-align="center"],
.alert-content .editor-image-wrapper:not([data-align]) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Left alignment */
.alert-content .editor-image-wrapper[data-align="left"] {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.alert-content .editor-image-wrapper[data-align="left"] .image-caption {
  text-align: left;
}

/* Full width */
.alert-content .editor-image-wrapper[data-align="full"] {
  width: 100%;
}

.alert-content .editor-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  vertical-align: top;
  /* CRITICAL: Override any inline opacity/filter from editor that may have been saved */
  opacity: 1 !important;
  filter: none !important;
}

/* Ensure image wrapper itself is never dimmed (overrides any saved inline styles) */
.alert-content .editor-image-wrapper {
  opacity: 1 !important;
}

/* Image captions - positioned close to image like professional news sites */
.alert-content .editor-image-wrapper .image-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
  /* Tight spacing (4px) - professional news site style */
  margin-bottom: 0;
  padding-top: 0;
  font-style: italic;
  line-height: 1.4;
  display: block;
}

/* Remove any spacing from image resizer wrapper */
.alert-content .editor-image-wrapper .image-resizer {
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 0;
  /* Remove baseline spacing that creates gaps */
  vertical-align: top;
  /* Ensure no editor pseudo-elements create overlays */
  position: relative;
}

/* Remove any ::before overlays that editor CSS might have added */
.alert-content .editor-image-wrapper .image-resizer::before {
  display: none;
  content: none;
}

/* Ensure images are fully clickable on public side */
.alert-content .editor-image-wrapper img {
  pointer-events: auto;
}

/* Hide empty captions and editor UI elements that should never appear on public site */
.alert-content .image-caption:empty,
.alert-content .image-controls,
.alert-content .resize-handle,
.alert-content .drop-indicator-line,
.alert-content .drop-indicator,
.alert-content .image-drop-indicator,
.alert-content .floating-toolbar,
.alert-content .media-insertion-zone,
.alert-content .element-delete-btn {
  display: none;
}

/* ================================================================
   PROFESSIONAL TYPOGRAPHY - Substack/Patreon Style
   ================================================================ */

/* Headers with proper spacing - Professional typography */
.alert-content h1,
.alert-content h2,
.alert-content h3,
.alert-content h4,
.alert-content h5,
.alert-content h6,
.full-alert-content h1,
.full-alert-content h2,
.full-alert-content h3,
.full-alert-content h4,
.full-alert-content h5,
.full-alert-content h6 {
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Header margins matched to editor for WYSIWYG consistency */
.alert-content h1,
.full-alert-content h1 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.alert-content h2,
.full-alert-content h2 {
  font-size: 1.75rem;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.alert-content h3,
.full-alert-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.alert-content h4,
.full-alert-content h4 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.alert-content h5,
.full-alert-content h5 {
  font-size: 1.125rem;
  margin-top: 1rem;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.alert-content h6,
.full-alert-content h6 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.375rem;
  line-height: 1.4;
  font-weight: 600;
}

/* First header shouldn't have top margin */
.alert-content>h1:first-child,
.alert-content>h2:first-child,
.alert-content>h3:first-child,
.full-alert-content>h1:first-child,
.full-alert-content>h2:first-child,
.full-alert-content>h3:first-child {
  margin-top: 0;
}

/* Professional Lists - Substack/Patreon Style */
.alert-content ul,
.alert-content ol,
.full-alert-content ul,
.full-alert-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.alert-content ul,
.full-alert-content ul {
  list-style-type: disc;
  list-style-position: outside;
}

.alert-content ol,
.full-alert-content ol {
  list-style-type: decimal;
  list-style-position: outside;
}

/* Nested lists with proper indentation */
.alert-content ul ul,
.alert-content ol ol,
.alert-content ul ol,
.alert-content ol ul,
.full-alert-content ul ul,
.full-alert-content ol ol,
.full-alert-content ul ol,
.full-alert-content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
}

.alert-content ul ul,
.full-alert-content ul ul {
  list-style-type: circle;
}

.alert-content ul ul ul,
.full-alert-content ul ul ul {
  list-style-type: square;
}

/* List items with professional spacing */
.alert-content li,
.full-alert-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.alert-content li:last-child,
.full-alert-content li:last-child {
  margin-bottom: 0;
}

/* List items containing paragraphs */
.alert-content li>p,
.full-alert-content li>p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.alert-content li>p:first-child,
.full-alert-content li>p:first-child {
  margin-top: 0;
}

.alert-content li>p:last-child,
.full-alert-content li>p:last-child {
  margin-bottom: 0;
}

/* Lists after headers */
.alert-content h1+ul,
.alert-content h1+ol,
.alert-content h2+ul,
.alert-content h2+ol,
.alert-content h3+ul,
.alert-content h3+ol,
.full-alert-content h1+ul,
.full-alert-content h1+ol,
.full-alert-content h2+ul,
.full-alert-content h2+ol,
.full-alert-content h3+ul,
.full-alert-content h3+ol {
  margin-top: 1rem;
}

/* Paragraphs after headers */
/* Paragraphs after headers - no extra margin for WYSIWYG consistency with editor */
.alert-content h1+p,
.alert-content h2+p,
.alert-content h3+p,
.alert-content h4+p,
.alert-content h5+p,
.alert-content h6+p,
.full-alert-content h1+p,
.full-alert-content h2+p,
.full-alert-content h3+p,
.full-alert-content h4+p,
.full-alert-content h5+p,
.full-alert-content h6+p {
  margin-top: 0;
}

/* Strong and emphasis */
.alert-content strong,
.full-alert-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

.alert-content em,
.full-alert-content em {
  font-style: italic;
}

/* Blockquotes */
.alert-content blockquote,
.full-alert-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--accent-primary);
  background: var(--bg-secondary);
  border-radius: 4px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.alert-content blockquote p,
.full-alert-content blockquote p {
  margin-bottom: 0.75rem;
}

.alert-content blockquote p:last-child,
.full-alert-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Code blocks */
.alert-content pre,
.full-alert-content pre {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow-x: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.alert-content code,
.full-alert-content code {
  background: var(--bg-secondary);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-sm);
  color: var(--accent-primary);
}

.alert-content pre code,
.full-alert-content pre code {
  background: transparent;
  padding: 0;
  color: var(--text-primary);
}

/* Horizontal rules */
.alert-content hr,
.full-alert-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
  background: none;
}

/* Mobile adjustments for typography - matched to editor for consistency */
@media (max-width: 768px) {

  .alert-content h1,
  .full-alert-content h1 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .alert-content h2,
  .full-alert-content h2 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .alert-content h3,
  .full-alert-content h3 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .alert-content ul,
  .alert-content ol,
  .full-alert-content ul,
  .full-alert-content ol {
    padding-left: 1.5rem;
  }

  .alert-content ul ul,
  .alert-content ol ol,
  .alert-content ul ol,
  .alert-content ol ul,
  .full-alert-content ul ul,
  .full-alert-content ol ol,
  .full-alert-content ul ol,
  .full-alert-content ol ul {
    padding-left: 1.5rem;
  }
}


.section__inner--content > .content-block {
  display: block;
  background: #12121a;
  padding: var(--space-6);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.content-block__text,
.entry-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

/* Flat DOM fix: article IS the content container now.
   Override .prose max-width (65ch) and .entry-content max-width (100%)
   to use proper content-width + centering + card styling
   that was previously on the removed .content-block wrapper. */
article.section__inner--content.entry-content {
  max-width: var(--content-width);
  margin: 0 auto;
  background: #12121a;
  padding: var(--space-6);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Below-article content divs (e.g. alert-single learn-more, related alerts)
   also need card styling when they're direct children of main. */
main > div.section__inner--content {
  max-width: var(--content-width);
  background: #12121a;
  padding: var(--space-6);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin-top: var(--space-4);
}

@media (max-width: 640px) {
  .section__inner--content > .content-block {
    padding: var(--space-4);
    border-radius: 12px;
  }
  article.section__inner--content.entry-content,
  main > div.section__inner--content {
    padding: var(--space-4);
    border-radius: 12px;
  }
}

/* Financial dashboard, watch-card teaser base (clickable card feel) */
.watch-card--teaser {
  position: relative;
  border: 1px solid var(--border-color, rgba(255,255,255,0.08));
  background: var(--bg-card, #1a1a2e);
  border-radius: 12px;
}
.watch-card--teaser h3 {
  color: var(--accent-primary, #0ea5e9);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.watch-card--teaser::after {
  content: '\2192';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.875rem;
  color: var(--accent-primary, #0ea5e9);
  opacity: 0.4;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.watch-card--teaser:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.watch-card--teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Financial dashboard, color variants */
.watch-card--energy {
  border-left: 4px solid #f59e0b;
  background: linear-gradient(135deg, rgba(245,158,11,0.06), var(--bg-card, #1a1a2e));
}
.watch-card--energy h3 { color: #f59e0b; }

.watch-card--gold {
  border-left: 4px solid #eab308;
  background: linear-gradient(135deg, rgba(234,179,8,0.06), var(--bg-card, #1a1a2e));
}
.watch-card--gold h3 { color: #eab308; }

.watch-card--fuel {
  border-left: 4px solid #ef4444;
  background: linear-gradient(135deg, rgba(239,68,68,0.06), var(--bg-card, #1a1a2e));
}
.watch-card--fuel h3 { color: #ef4444; }

.watch-card--macro {
  border-left: 4px solid var(--accent-primary, #0ea5e9);
  background: linear-gradient(135deg, rgba(14,165,233,0.06), var(--bg-card, #1a1a2e));
}

