.watch-grid {
  display: grid;
  gap: 24px;
}

.watch-settings-grid {
  display: grid;
  gap: 24px;
}

.watch-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.watch-section-title h3,
.watch-section-title h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
}

.watch-section-title p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.watch-search-wrap {
  position: relative;
}

.watch-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.watch-search-row .dash-input,
.watch-search-row .watch-select {
  flex: 1;
}

.watch-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: rgba(10, 18, 32, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.watch-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.watch-suggestion:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 114, 0.08);
}

.watch-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.watch-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
}

.watch-chip.auto {
  border-color: rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.10);
}

.watch-chip.manual {
  border-color: rgba(197, 165, 114, 0.34);
  background: rgba(197, 165, 114, 0.12);
}

.watch-chip .meta {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-chip-remove {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.watch-chip-remove:hover {
  background: rgba(248, 113, 113, 0.16);
  color: #fca5a5;
}

.watch-empty {
  padding: 18px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.watch-preferences {
  display: grid;
  gap: 18px;
}

.watch-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
}

.watch-toggle-row:first-child {
  border-top: none;
  padding-top: 0;
}

.watch-toggle-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--text-primary);
}

.watch-toggle-copy span {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.watch-switch {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.watch-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.watch-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.watch-switch input:checked + span {
  transform: translateX(24px);
  background: var(--gold);
}

.watch-select {
  min-width: 190px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
}

.watch-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.watch-filter-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.watch-filter-bar .dash-input,
.watch-filter-bar .watch-select {
  width: 100%;
}

.watch-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.watch-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.watch-summary-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}

.watch-feed {
  display: grid;
  gap: 18px;
}

.watch-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.watch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.watch-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.watch-card-country {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}

.watch-card-country button {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.watch-impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-impact.critical {
  background: rgba(220, 38, 38, 0.16);
  color: #fecaca;
}

.watch-impact.high {
  background: rgba(249, 115, 22, 0.16);
  color: #fdba74;
}

.watch-impact.medium {
  background: rgba(234, 179, 8, 0.14);
  color: #fde68a;
}

.watch-impact.low {
  background: rgba(16, 185, 129, 0.14);
  color: #bbf7d0;
}

.watch-card-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-primary);
}

.watch-card-summary {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.watch-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.watch-card-meta a {
  color: var(--gold);
  text-decoration: none;
}

.watch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.watch-topic-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(197, 165, 114, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.watch-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.watch-page-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
}

.watch-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.watch-hero-copy h1 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 500;
  color: var(--text-primary);
}

.watch-hero-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 780px;
}

@media (max-width: 1100px) {
  .watch-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .watch-page-shell,
  .dash-main {
    padding: 24px 16px;
  }

  .watch-toolbar,
  .watch-hero,
  .watch-toggle-row {
    flex-direction: column;
    align-items: stretch;
  }

  .watch-filter-bar {
    grid-template-columns: 1fr;
  }

  .watch-search-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Signal Automatisation Card ── */
.sa-card {
  position: relative;
  overflow: hidden;
}

.sa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold, #C5A572), transparent 70%);
}

.sa-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.sa-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197, 165, 114, 0.12);
  color: var(--gold, #C5A572);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sa-header-copy h3 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary, rgba(255,255,255,0.95));
}

.sa-header-copy p {
  margin: 0;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  font-size: 14px;
  line-height: 1.5;
}

.sa-group {
  margin-bottom: 24px;
}

.sa-group:last-of-type {
  margin-bottom: 28px;
}

.sa-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold, #C5A572);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.sa-group-label i {
  font-size: 12px;
}

.sa-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.15s ease;
  margin-bottom: 6px;
}

.sa-row:last-child {
  margin-bottom: 0;
}

.sa-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(197, 165, 114, 0.08);
}

.sa-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(197, 165, 114, 0.08);
  color: var(--gold, #C5A572);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}

.sa-row-copy {
  flex: 1;
  min-width: 0;
}

.sa-row-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, rgba(255,255,255,0.95));
  margin-bottom: 2px;
}

.sa-row-copy span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  line-height: 1.4;
}

.sa-select {
  min-width: 170px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(197, 165, 114, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary, rgba(255,255,255,0.95));
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.sa-select:hover {
  border-color: rgba(197, 165, 114, 0.3);
}

.sa-select:focus {
  outline: none;
  border-color: var(--gold, #C5A572);
  box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.1);
}

.sa-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 165, 114, 0.08);
}

@media (max-width: 640px) {
  .sa-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sa-select {
    width: 100%;
    min-width: 0;
  }

  .sa-actions {
    flex-direction: column;
  }

  .sa-actions .dash-btn {
    width: 100%;
    justify-content: center;
  }
}
