-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
8333 lines (6031 loc) · 438 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
<head>
<meta charset="utf-8" />
<link rel="shortlink" href="https://cyber.fsi.stanford.edu/" />
<link rel="canonical" href="https://cyber.fsi.stanford.edu/" />
<meta name="Generator" content="Drupal 10 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" hreflang="en" href="https://cyber.fsi.stanford.edu/" />
<link rel="apple-touch-icon" href="/themes/custom/stanford_fsi/apple-touch-icon.png" sizes="180x180" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon-32x32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="/themes/custom/stanford_fsi/favicon-16x16.png" type="image/png" sizes="16x16" />
<title>Cyber Policy Center | FSI</title>
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_N78YX2lCJF0AzvRc743SUfdwDQFeQbKlAGIUJTX2dkU.css?delta=0&language=en&theme=stanford_fsi&include=eJxNjUGOAyEMBD-EhufsERnoEGcYzNqwSX4flCiavbSqqw-ddmQeooFbRhuxStr9P3b2tIHDRzI4G9Quojmsxsm_85QXY1-qRKouicJnnZ3qRjd6uE5KRalf7atPs83WZ6xsV2T3x7ibf-d2SJ4VLmIMaMCji2HdcF3VfEGDrq_b74Q-w-SQaaBz2qH-RFdESkVIBv_BRT9r1oN0fwEng2SY" />
<link rel="stylesheet" media="all" href="//use.fontawesome.com/releases/v5.15.4/css/all.css" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_t4NLaHgNMYjDpnVUx0TC0ND4Ps914U85VZWqdnKZYGM.css?delta=2&language=en&theme=stanford_fsi&include=eJxNjUGOAyEMBD-EhufsERnoEGcYzNqwSX4flCiavbSqqw-ddmQeooFbRhuxStr9P3b2tIHDRzI4G9Quojmsxsm_85QXY1-qRKouicJnnZ3qRjd6uE5KRalf7atPs83WZ6xsV2T3x7ibf-d2SJ4VLmIMaMCji2HdcF3VfEGDrq_b74Q-w-SQaaBz2qH-RFdESkVIBv_BRT9r1oN0fwEng2SY" />
<link rel="stylesheet" media="print" href="/sites/default/files/css/css_ipHMTqOd8MXWqrdkR7q2zw0hNkDpwEl3Km7uwx8BlwY.css?delta=3&language=en&theme=stanford_fsi&include=eJxNjUGOAyEMBD-EhufsERnoEGcYzNqwSX4flCiavbSqqw-ddmQeooFbRhuxStr9P3b2tIHDRzI4G9Quojmsxsm_85QXY1-qRKouicJnnZ3qRjd6uE5KRalf7atPs83WZ6xsV2T3x7ibf-d2SJ4VLmIMaMCji2HdcF3VfEGDrq_b74Q-w-SQaaBz2qH-RFdESkVIBv_BRT9r1oN0fwEng2SY" />
<link rel="stylesheet" media="all" href="/themes/custom/stanford_fsi/fonts/fonts-drupal.css?sqgpes" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_bcFdiuS3gduCe2D3ssVjb8Y-swJeW0X65YmoDTOZuq0.css?delta=5&language=en&theme=stanford_fsi&include=eJxNjUGOAyEMBD-EhufsERnoEGcYzNqwSX4flCiavbSqqw-ddmQeooFbRhuxStr9P3b2tIHDRzI4G9Quojmsxsm_85QXY1-qRKouicJnnZ3qRjd6uE5KRalf7atPs83WZ6xsV2T3x7ibf-d2SJ4VLmIMaMCji2HdcF3VfEGDrq_b74Q-w-SQaaBz2qH-RFdESkVIBv_BRT9r1oN0fwEng2SY" />
<link rel="stylesheet" media="all" href="/themes/custom/stanford_fsi/no-aggregation/no-aggregation.css?sqgpes" />
<script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","pathPrefix":"","currentPath":"node\/29995","currentPathIsAdmin":false,"isFront":true,"currentLanguage":"en"},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"gtm":{"tagId":null,"settings":{"data_layer":"dataLayer","include_classes":false,"allowlist_classes":"","blocklist_classes":"","include_environment":false,"environment_id":"","environment_token":""},"tagIds":["GTM-5PWBZTH"]},"gtag":{"tagId":"G-S82RDPFHSE","consentMode":false,"otherIds":["G-XNZW311XMN",""],"events":[],"additionalConfigInfo":[]},"ajaxPageState":{"libraries":"eJx1kFmOAyEMRC_UHY4zn8iAQ5MARrbJcvshiyYhmvyYop5lle1QFdnipZFgsPuUx1cMdCUr3ZWki_u_JYBiS_449LeWiBUZ8jcsmNGrhZxtpYrLmBWSEttUA1Z1mfzRvOklEsWM1guahxzqZ8TgAvxHFaKJo3z-d3CAy2yWpQFDZGjb2Id7g7x7ObteW3c5yYZhEYW6Jw7WgSRv7vVl7iUZR5dVz7R6yr1UmaEHDrI-tphAzOTGhSZvQwjIq1IcUWc00uj6vN9MCta-Fkh1tuWYWoXTh9k46Zh8FcVy2wWXU8KzmHt9HOrdKBR6fvbYG7XbyEF8Nc_3F9PT5bA","theme":"stanford_fsi","theme_token":null},"ajaxTrustedUrl":{"\/content\/cyber-landing-test-june":true,"\/search\/google":true},"stanford_basic":{"nav_dropdown_enabled":false},"viewsAjaxHistory":{"renderPageItem":0,"initialExposedInput":{"views_dom_id:f16896c8e8641d056715f1ac9d4c2c5c871af6ff4f6f41e08414e8900e797d86":null}},"views":{"ajax_path":"\/views\/ajax","ajaxViews":{"views_dom_id:f16896c8e8641d056715f1ac9d4c2c5c871af6ff4f6f41e08414e8900e797d86":{"view_name":"fsi_news","view_display_id":"news_list_filter","view_args":"","view_path":"\/node\/29995","view_base_path":null,"view_dom_id":"f16896c8e8641d056715f1ac9d4c2c5c871af6ff4f6f41e08414e8900e797d86","pager_element":0,"viewsreference":{"compressed":"eJxdUM0KgzAMfpecPUzZxPkyJdLYBdoqbXSI-O5rcSrbIZDvN5AVNApCuwIGMznyAq2frC1AWCwdYERD4QBD30c6fZYdf8FWAHnsLGmVDMLexN_maz37JUy05QMh0SoNy6JkGZOUSTQBxxf8G1gnuaya6v68tJ7JauXR5ewOyHXUqZnpHS9foJkjD35vedRNXZdJ3RMs5JQmm59y2z5zbGVT"}}}},"better_exposed_filters":{"datepicker":true,"datepicker_options":[]},"googlePSE":{"language":"en","displayWatermark":false},"user":{"uid":0,"permissionsHash":"16f9c77489b88ad14c88c5ea4772986419600c068c4f05b78d0914545a48cc0e"}}</script>
<script src="/core/assets/vendor/modernizr/modernizr.min.js?v=3.11.7"></script>
<script src="/sites/default/files/js/js_gHKIUnKFJH5AVa-Frjm64i7Y6OXPfu4rEdEqpw0ByzE.js?scope=header&delta=1&language=en&theme=stanford_fsi&include=eJx1UEGOwzAI_FC8fk6PFnaoywabyJA2_f16m_bgSrnADDMSA2pQr9LmEEEp-Ved9DO8KvnMEoGnLJIZg0H22cpIIX_zH_iFfboTPjT8w3AjNWlP_-6H5F_18A47o-zOHuKS8FaqThHNsAXcV1HsFuJO1Wes2Hq2Exk2k6BbLGRnFkXGZAGYQ5WKZ7YZDFdKS8djUO7nuLdrVBK0WV1kScso6NrIcJzdEGZsziT3J45Swbq5AlQ_L06K_oAdXXqwVqB971horXD_A4lRvE0"></script>
<script src="/modules/contrib/google_tag/js/gtm.js?sqgpes"></script>
<script src="/modules/contrib/google_tag/js/gtag.js?sqgpes"></script>
<script src="/sites/default/files/js/js_uVtraW--ht-FY2xwXMRi2vx8JhZAfbd34kzTZ8lamq8.js?scope=header&delta=4&language=en&theme=stanford_fsi&include=eJx1UEGOwzAI_FC8fk6PFnaoywabyJA2_f16m_bgSrnADDMSA2pQr9LmEEEp-Ved9DO8KvnMEoGnLJIZg0H22cpIIX_zH_iFfboTPjT8w3AjNWlP_-6H5F_18A47o-zOHuKS8FaqThHNsAXcV1HsFuJO1Wes2Hq2Exk2k6BbLGRnFkXGZAGYQ5WKZ7YZDFdKS8djUO7nuLdrVBK0WV1kScso6NrIcJzdEGZsziT3J45Swbq5AlQ_L06K_oAdXXqwVqB971horXD_A4lRvE0"></script>
</head>
<body class="path-frontpage page-node-type-landing-page subdomain domain--cyber page-body">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5PWBZTH"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav id="skipnav" class="skipnav">
<div class="container">
<ul>
<li><a href="#main-content" class="visually-hidden focusable skip-link">Skip to main content</a></li>
<li><a href="#main-nav" class="visually-hidden focusable skip-link">Skip to main navigation</a></li>
</ul>
</div>
</nav>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div class="layout-container">
<header class="header">
<div class="header-top header-top--cyber region region-top-header-left bg-red z-[10]">
<div class="container">
<div id="block-header-top" class="block block-content ced1bdcf-a613-4da6-ae1e-cd14a7af31d2">
<div class="block-content basic body text-with-summary label-hidden text-long"><p><span><a href="http://www.stanford.edu/">Stanford University</a></span></p></div>
</div>
</div>
</div>
<div class="header-main header-main--cyber region region-header relative z-[11] bg-white">
<div class="container relative flex z-1">
<div class="
flex flex-col w-full
1024:flex-row 1024:items-center
">
<div id="block-fsi-domain-logo" class="block fsi-domain-logo">
<div class="subdomain-logo__left py-5">
<a href="/" title="Home" rel="home" class="hidden 1024:block">
<img src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/2025-01/stanford-line2-822_crop.png" alt="Logo for the Cyber Policy Center"/>
</a>
<a href="/" title="Home" rel="home" class="1024:hidden">
<img src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/2025-01/stanford-line2-822_crop.png" alt="Logo for the Cyber Policy Center"/>
</a>
</div>
</div>
<div id="block-fsi-subdomain-logo" class="block fsi-subdomain-logo">
<div class="subdomain-logo__right">
<p>The Cyber Policy Center is part of the of the <a href="http://fsi.stanford.edu/">Freeman Spogli Institute for International Studies</a>.</p>
</div>
</div>
</div>
</div>
</div>
<button class="toggle-expand" arial-live="polite">
<span class="toggle-expand__open">
<svg class="toggle-expand__icon"
>
<use xlink:href="/themes/custom/stanford_fsi/dist/icons.svg#menu"></use>
</svg>
<span
class="toggle-expand__text"
aria-label="Open menu"
>Menu</span>
</span>
<span class="toggle-expand__close">
<span
class="toggle-expand__text"
aria-label="Close menu"
>Close</span>
</span>
</button>
<div class="header-navigation region region-navigation bg-red nav-collapsible">
<div class="container relative">
<div class="search-block-form google-cse search-form-block block block-search container-inline" data-drupal-selector="search-block-form" id="block-stanford-fsi-search-header" role="search">
<span class="visually-hidden">Search</span>
<form action="/search/google" method="get" id="search-block-form" accept-charset="UTF-8">
<div class="js-form-item form-item form-item-edit-keys">
<input title="Enter the terms you wish to search for." placeholder="Search Cyber" data-drupal-selector="edit-keys" type="search" id="edit-keys" name="keys" value="" size="40" maxlength="128" class="form-search form-item__textfield" />
</div>
<div id="edit-actions-search-block-form" data-drupal-selector="edit-actions" class="form-actions js-form-wrapper form-wrapper"><input data-drupal-selector="edit-submit" type="submit" id="edit-submit" value="Search" class="button js-form-submit form-submit form-item__textfield" />
</div>
</form>
</div>
<div id="block-fsi-main-menu" class="block fsi-main-menu main-menu-12404442">
<nav id="main-nav" class="main-nav bg-red">
<ul class="main-menu hidden">
<li class="main-menu__item main-menu__item--with-sub">
<a href="/sciabout" class="main-menu__link main-menu__link--with-sub" data-drupal-link-system-path="node/29485">About</a>
<button class="expand-sub">
<span class="expand-sub--opened">close menu</span>
<span class="expand-sub--closed">open menu</span>
</button>
<ul class="main-menu main-menu--sub main-menu--sub-1 hidden">
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/research/project-on-democracy-and-the-internet" class="main-menu__link main-menu__link--sub main-menu__link--sub-1">Program on Democracy and the Internet</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/io" class="main-menu__link main-menu__link--sub main-menu__link--sub-1">Internet Observatory</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/social-media-lab" class="main-menu__link main-menu__link--sub main-menu__link--sub-1" data-drupal-link-system-path="node/30478">Social Media Lab</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/gdpi" class="main-menu__link main-menu__link--sub main-menu__link--sub-1">Global Digital Policy Incubator</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/content/program-platform-regulation" class="main-menu__link main-menu__link--sub main-menu__link--sub-1" data-drupal-link-system-path="node/30136">Program on Platform Regulation</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="/content/program-governance-emerging-technologies" class="main-menu__link main-menu__link--sub main-menu__link--sub-1" data-drupal-link-system-path="node/35102">Governance of Emerging Technologies</a>
</li>
<li class="main-menu__item main-menu__item--sub main-menu__item--sub-1">
<a href="https://www.pascl.stanford.edu/" class="main-menu__link main-menu__link--sub main-menu__link--sub-1">Polarization and Social Change Lab</a>
</li>
</ul>
</li>
<li class="main-menu__item">
<a href="/scieducation" class="main-menu__link" data-drupal-link-system-path="node/29469">Courses</a>
</li>
<li class="main-menu__item">
<a href="/sciprojects" class="main-menu__link" data-drupal-link-system-path="node/29465">Research</a>
</li>
<li class="main-menu__item">
<a href="/people" class="main-menu__link" data-drupal-link-system-path="node/30631">People</a>
</li>
<li class="main-menu__item">
<a href="/news" class="main-menu__link" data-drupal-link-system-path="node/29733">News</a>
</li>
<li class="main-menu__item">
<a href="/cyber-events" class="main-menu__link" data-drupal-link-system-path="node/30150">Events</a>
</li>
<li class="main-menu__item">
<a href="/publications" class="main-menu__link" data-drupal-link-system-path="node/29761">Publications</a>
</li>
<li class="main-menu__item">
<a href="/content/opportunities-cpc" class="main-menu__link" data-drupal-link-system-path="node/30537">Opportunities</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div id="block-views-block-alert-block-alert" class="block views-element-container views-block alert-block-alert">
<div><div class="view alert block-alert js-view-dom-id-0410e1f59c422a6aec68ce61deac210144646dd606d17ae583aba62fae72652d">
</div>
</div>
</div>
</header>
<div class="main">
<a id="main-content" tabindex="-1"></a>
<main role="main" class="main-content">
<div class="region region--content grid-full layout--pass--content-medium ie11-autorow" id="content">
<div data-drupal-messages-fallback class="hidden"></div>
<div id="block-stanford-fsi-content" class="block system-main-block">
<article about="/content/cyber-landing-test-june" class="node">
<h1
class="h visually-hidden h1"
><div class="node landing-page title string label-hidden">Cyber Policy Center</div>
</h1>
<div>
<div class="node landing-page field-paragraphs entity-reference-revisions label-hidden">
<div class="page-title">
<div
class="page-title page-title--has-image mb-7.5 768:mb-[82px]"
id="subnav-92821"
>
<div class="page-title__image relative overflow-hidden"">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1439x455/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=a_e5YwQG 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1439x455_x2/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=adh9XsCY 2x" media="all and (min-width: 1300px)" type="image/png" width="1439" height="455"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1299x455/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=f6WKMbXh 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1299x455_x2/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=lwR19PYn 2x" media="all and (min-width: 1024px)" type="image/png" width="1299" height="455"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1023x324/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=tx9EaV8A 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/1023x324_x2/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=VgTJhRJv 2x" media="all and (min-width: 768px)" type="image/png" width="1023" height="324"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=L7Tvvauh 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=3jnTMikW 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=V5vsZ48i 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=o2ZewiJw 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/encina-hall-cpc-25.png?h=5ac047cf&itok=V5vsZ48i"
alt="encina hall"
/>
</picture>
</div>
<div class="container">
<div class="relative">
<div class="page-title__content bg-[#ffffff] py-4 px-5 1024:p-7.5 border-b-3 border-solid border-b-red shadow-3xl flex flex-col">
<h2
class="h h--big-title h2"
>
Cyber Policy Center
</h2>
<div class="page-title__description">
<div class="paragraph page-title field-text string-long label-hidden">Stanford University's research center for the interdisciplinary study of issues at the nexus of technology, governance and public policy</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dynamic-teaser bg-[#f2f1eb] relative"
id=subnav-147532
>
<div class="dynamic-teaser__image 768:absolute 768:top-0 768:h-full 768:w-1/2 768:overflow-hidden 768:left-0">
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=aH7sy465 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/960x550_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=fUohMt5h 2x" media="all and (min-width: 1440px)" type="image/png" width="960" height="550"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=98aJCjNS 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/720x420_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=98aJCjNS 2x" media="all and (min-width: 1300px)" type="image/png" width="1440" height="840"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=b98V5wKj 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/650x420_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=Kg9PxJFL 2x" media="all and (min-width: 1024px)" type="image/png" width="650" height="420"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=LPIZF_ud 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x450_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=N4t7aFiM 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="450"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=3dCaclL0 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=5IpqXwkV 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=_nuo2jmL 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=BjjMeiRX 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/jennifer-allen-seminar.png?h=c12e0b96&itok=_nuo2jmL"
alt="Jennifer Allen"
/>
</picture>
</div>
<div class="container">
<div class="dynamic-teaser__content-wrapper py-4 768:flex 768:items-center 768:w-1/2 768:py-7.5 768:h-[28.125rem] 1024:py-10 1024:h-[26.25rem] 1440:h-[28.571vw] 768:pl-10 768:float-right 1024:pl-[100px]"
>
<div>
<h2
class="h h--big-title h2"
>
January 21 | Quantifying the Impact of Misinformation and Vaccine-Skeptical Content on Facebook
</h2>
<div class="mb-4">
With Jennifer Allen
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://cyber.fsi.stanford.edu/events/january-21-quantifying-impact-misinformation-and-vaccine-skeptical-content-facebook"
>
REGISTER
</a>
</div>
</div>
</div>
</div>
<div class="highlight-text">
<div class="highlight-text highlight-text--1-items bg-[#f2f1eb] mb-12.5 768:mb-[70px]" id="subnav-144010">
<div class="highlight-text__items container">
<div class="highlight-text-item px-5 py-4 768:px-9.5 768:py-7.5 mb-5 768:mb-0 relative bg-white -bottom-5 border-b-2 border-solid border-b-red" >
<h2
class="h h--big-title h2"
>Winter Seminar Series at the CPC</h2>
<div class="mb-3.5">Join us for a weekly webinar series organized by Stanford’s Cyber Policy Center (CPC). Our speakers include those who focus on policy to others who concentrate on empirical work around cyber issues. There will be both in person and virtual zoom options and attendees can register for all events in the series or single events. Events begin in January and run through March.
</div>
<a
class="link uppercase font-ss_semibold text-15"
href="https://cyber.fsi.stanford.edu/content/winter-seminar-series-2025"
>
THE LINEUP
</a>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#ffffff]"
id="subnav-147427">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<h3
class="h h--gleam text-center cards-block__title h3"
>
RECENT SEMINARS
</h3>
<div class="cards-block__items cards-block__items--3-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://www.youtube.com/live/bMDquMhkV48"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=GuMENC7L 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=hjwJBiM3 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=qfFdjbpL 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=B6ZG9XVb 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=MfSIb8eB 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=aeCzJiKX 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=IluQEnXA 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=uOpe6MQJ 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2025-01/ravi-january7-2025.png?h=ddc58dd3&itok=IluQEnXA"
alt="Ravi Iyer headshot "
/>
</picture>
</div>
<h2
class="h h--small h2"
>Measurably Improving Online Experiences by Design</h2>
<div class="news-teaser__description mb-4 480m:text-16" >
How tools - both our Design Code and Indices - are informing regulation and platform changes across companies and in various jurisdictions. WIth Ravi Iyer.
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://www.youtube.com/live/bMDquMhkV48"
>
WATCH
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://youtu.be/0zbuXncx6ZU?si=yLLozGDfzIA43x4Q"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=2GnzIW6A 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=U8NSAlj3 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=Igk9ytlc 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=6ulKwHT4 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=regF8_3M 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=rNXAjfw3 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=1sK8Kjlx 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=Rq3n422D 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/zoom-conversation-governance.png?h=d1cb525d&itok=1sK8Kjlx"
alt="image of book cover and panelists"
/>
</picture>
</div>
<h2
class="h h--small h2"
>A Conversation: Governance Options for Generative AI</h2>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://youtu.be/0zbuXncx6ZU?si=yLLozGDfzIA43x4Q"
>
WATCH
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://www.youtube.com/watch?v=w7KMaOeLHNQ&feature=youtu.be"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=3o41kPEw 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=ebDLX3e3 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=igFOR2Ru 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=vHYMXffc 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=OfCYrF25 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=bsi1BDFd 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=0ZHCiGKT 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=bVc3UZ5m 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/taiwan-event-october29.png?h=d1cb525d&itok=0ZHCiGKT"
alt="image of taiwan cityscape"
/>
</picture>
</div>
<h2
class="h h--small h2"
>AI-Driven Disinformation in Taiwan’s 2024 Presidential Election and Lessons for the World</h2>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://www.youtube.com/watch?v=w7KMaOeLHNQ&feature=youtu.be"
>
WATCH
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#ffffff]"
id="subnav-147423">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<div class="cards-block__items cards-block__items--3-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://www.youtube.com/live/4O6OhZOhRyM"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2024-10/japan-october22.png?h=ddc58dd3&itok=8QJqDk-z 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2024-10/japan-october22.png?h=ddc58dd3&itok=Zy4FdciM 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2024-10/japan-october22.png?h=ddc58dd3&itok=LW9gIZA6 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2024-10/japan-october22.png?h=ddc58dd3&itok=8Mouqxy9 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-10/japan-october22.png?h=ddc58dd3&itok=ZG6l4_vQ 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-10/japan-october22.png?h=ddc58dd3&itok=5auxWuwq 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/japan-october22.png?h=ddc58dd3&itok=HmgizaWf 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-10/japan-october22.png?h=ddc58dd3&itok=NHVTpkaN 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/japan-october22.png?h=ddc58dd3&itok=HmgizaWf"
alt="encina hall"
/>
</picture>
</div>
<h2
class="h h--small h2"
>Japan's Approach to AI Governance: Shaping a Future of AI-Human Interaction</h2>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://www.youtube.com/live/4O6OhZOhRyM"
>
WATCH
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://www.youtube.com/live/zMroSZ56z_4"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=SEIUBcNf 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=kFkUmoBI 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=ziLqDT01 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=xVAGb29T 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=npdXepJQ 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=6eJy6z_a 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=RTyaIHFv 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=BSw5wKqG 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-10/tiziano-piccardi-october15.png?h=c12e0b96&itok=RTyaIHFv"
alt="tiziano piccardi smiling in front of encina hall"
/>
</picture>
</div>
<h2
class="h h--small h2"
>Tuning Our Algorithmic Amplifiers</h2>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://www.youtube.com/live/zMroSZ56z_4"
>
WATCH
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://www.youtube.com/live/60kpHwc5Nl0"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=nX-Ylq0C 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=l2L25Oqu 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=5nnaJFnt 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=kTdgXz12 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=ul66YVbl 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=epaaCD36 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=xq3CYIZt 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=UBXhh_Ho 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2024-09/daphne-keller-october-1.png?h=c12e0b96&itok=xq3CYIZt"
alt="Daphne Keller headshot with encina hall in the background"
/>
</picture>
</div>
<h2
class="h h--small h2"
>The Supreme Court and Internet Platforms</h2>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://www.youtube.com/live/60kpHwc5Nl0"
>
WATCH
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#2e2d29]"
id="subnav-135978">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<h3
class="h h--gleam cards-block__title h3"
>
Our Programs
</h3>
<div class="cards-block__items cards-block__items--3-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://cyber.fsi.stanford.edu/content/program-platform-regulation"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2023-12/scales.png?h=8abcec71&itok=RmOwMR4Y 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2023-12/scales.png?h=8abcec71&itok=NmQ8-bIY 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2023-12/scales.png?h=8abcec71&itok=bClIfhl5 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2023-12/scales.png?h=8abcec71&itok=5q_c6apa 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-12/scales.png?h=8abcec71&itok=xdjE3Fl0 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-12/scales.png?h=8abcec71&itok=xllhONLp 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/scales.png?h=8abcec71&itok=4mmTJtyI 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-12/scales.png?h=8abcec71&itok=GH8AKwPI 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/scales.png?h=8abcec71&itok=4mmTJtyI"
alt="scales"
/>
</picture>
</div>
<h2
class="h h--small h2"
>Program on Platform Regulation</h2>
<div class="news-teaser__description mb-4 480m:text-16" >
The Program on Platform Regulation focuses on current or emerging law governing Internet platforms, with an emphasis on laws’ consequences for the rights and interests of Internet users and the public.
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://cyber.fsi.stanford.edu/content/program-platform-regulation"
>
READ MORE
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://cyber.fsi.stanford.edu/io/about"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2023-12/dish_0.png?h=8abcec71&itok=6hyGh5qE 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2023-12/dish_0.png?h=8abcec71&itok=H8ohvhsg 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2023-12/dish_0.png?h=8abcec71&itok=SUFPNzmc 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2023-12/dish_0.png?h=8abcec71&itok=f52LbHPV 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-12/dish_0.png?h=8abcec71&itok=ZDcxmNzI 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-12/dish_0.png?h=8abcec71&itok=1wCqkLtl 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/dish_0.png?h=8abcec71&itok=Pwa3bt3c 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-12/dish_0.png?h=8abcec71&itok=P_XpCqRB 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/dish_0.png?h=8abcec71&itok=Pwa3bt3c"
alt="image of satellite dish"
/>
</picture>
</div>
<h2
class="h h--small h2"
>Internet Observatory</h2>
<div class="news-teaser__description mb-4 480m:text-16" >
The Stanford Internet Observatory is a cross-disciplinary program of research, teaching and policy engagement for the study of abuse in current information technologies, with a focus on social media.
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://cyber.fsi.stanford.edu/io/about"
>
READ MORE
</a>
</div>
</div>
</div>
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://cyber.fsi.stanford.edu/social-media-lab"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2023-12/socialmedia.png?h=8abcec71&itok=8D_sRS-R 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2023-12/socialmedia.png?h=8abcec71&itok=k6UZJ-L- 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2023-12/socialmedia.png?h=8abcec71&itok=UfOZY1E8 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2023-12/socialmedia.png?h=8abcec71&itok=MfrE7nSV 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-12/socialmedia.png?h=8abcec71&itok=JZZTMx3c 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-12/socialmedia.png?h=8abcec71&itok=G2FDlPd_ 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/socialmedia.png?h=8abcec71&itok=VvWtN0az 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-12/socialmedia.png?h=8abcec71&itok=9OceAXci 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->
<img
class="image"
src="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/socialmedia.png?h=8abcec71&itok=VvWtN0az"
alt="social media icons showing on an illustration of a hand holding a phone"
/>
</picture>
</div>
<h2
class="h h--small h2"
>Social Media Lab</h2>
<div class="news-teaser__description mb-4 480m:text-16" >
The Stanford Social Media Lab works on understanding psychological and interpersonal processes in social media. The team specializes in using computational linguistics and behavioral experiments to understand how the words we use can reveal psychological and social dynamics, such as deception and trust, emotional dynamics, and relationships.
</div>
<a
class="link text-15 uppercase font-ss_semibold relative z-1"
href="https://cyber.fsi.stanford.edu/social-media-lab"
>
READ MORE
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cards-block">
<div class="cards-block bg-[#2e2d29]"
id="subnav-135982">
<div class="container pt-10 pb-2.5 768:pt-12.5 768:pb-5">
<div class="cards-block__items cards-block__items--3-items 768:flex 768:justify-center 768:flex-wrap 768:-mx-2 1024:-mx-4">
<div class="cards-block-item mb-7.5 768:px-2 768:mb-4 768:w-1/2 1024:px-4 1024:mb-7.5">
<div class="clickable-card" data-href="https://pacscenter.stanford.edu/research/program-on-democracy-and-the-internet/"
data-target="_self">
<div class="news-teaser news-teaser--cards_block overflow-hidden 768:h-full px-7.5 pb-4.5 relative bg-white" >
<div class="news-teaser__img news-teaser__img--cards_block -mx-7.5 mb-5" >
<picture
loading="eager" class="image"
>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355/public/2023-12/courthouse.png?h=8abcec71&itok=p109C91k 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/630x355_x2/public/2023-12/courthouse.png?h=8abcec71&itok=JBV44Gkk 2x" media="all and (min-width: 1024px)" type="image/png" width="630" height="355"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287/public/2023-12/courthouse.png?h=8abcec71&itok=cu8W1btc 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/511x287_x2/public/2023-12/courthouse.png?h=8abcec71&itok=W90TwPJN 2x" media="all and (min-width: 768px)" type="image/png" width="511" height="287"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431/public/2023-12/courthouse.png?h=8abcec71&itok=4AM2lHIh 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/767x431_x2/public/2023-12/courthouse.png?h=8abcec71&itok=IwRO94xs 2x" media="all and (max-width: 767px)" type="image/png" width="767" height="431"/>
<source srcset="https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270/public/2023-12/courthouse.png?h=8abcec71&itok=yvgLWil8 1x, https://fsi9-prod.s3.us-west-1.amazonaws.com/s3fs-public/styles/480x270_x2/public/2023-12/courthouse.png?h=8abcec71&itok=Fq2cy4rf 2x" media="all and (max-width: 480px)" type="image/png" width="480" height="270"/>
<!--[if IE 9]></video><![endif]-->