.regulatory-page .watch-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.watch-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.watch-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.watch-summary article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.watch-summary strong,
.watch-summary span {
  display: block;
}

.watch-summary strong {
  font-size: 18px;
  margin-bottom: 7px;
}

.watch-summary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.watch-grid .brief-card h3 {
  font-size: 18px;
}

@media (max-width: 920px) {
  .regulatory-page .watch-hero {
    flex-direction: column;
  }

  .watch-summary,
  .watch-grid {
    grid-template-columns: 1fr;
  }
}
