-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.html
More file actions
1109 lines (1026 loc) · 50.2 KB
/
Copy pathbackup.html
File metadata and controls
1109 lines (1026 loc) · 50.2 KB
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Marcus Lower | Astrophysicist</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--sidebar-bg: #0b0f1e;
--sidebar-border: #1e2740;
--sidebar-text: #cbd5e1;
--sidebar-muted: #64748b;
--sidebar-accent: #f0a83a;
--sidebar-link: #7eb8f7;
--page-bg: #f8f9fc;
--content-bg: #ffffff;
--text-primary: #1e293b;
--text-secondary: #475569;
--text-muted: #94a3b8;
--border: #e2e8f0;
--accent: #2563eb;
--accent-light: #eff6ff;
--accent-gold: #d97706;
--accent-gold-light: #fffbeb;
--nav-active: #1e293b;
--tag-bg: #f1f5f9;
--nav-bg: #ffffff;
--sidebar-width: 265px;
--transition-theme: background 0.0s, color 0.0s, border-color 0.0s;
}
html.dark {
--page-bg: #0b0f1e;
--content-bg: #111827;
--nav-bg: #0b0f1e;
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
--text-muted: #4e5a6e;
--border: #252b3b;
--accent: #5b9cf6;
--accent-light: #1a2540;
--accent-gold: #f0a83a;
--accent-gold-light: #1e1708;
--nav-active: #e2e8f0;
--tag-bg: #1e2435;
--sidebar-bg: #080b14;
--sidebar-border: #161c30;
--sidebar-muted: #4e5a6e;
}
html { font-family: 'Inter', system-ui, sans-serif; font-size: 15px; }
body { display: flex; flex-direction: column; min-height: 100vh; background: var(--page-bg); color: var(--text-primary); transition: var(--transition-theme); }
/* ── TOP NAV ── */
nav {
position: sticky; top: 0; z-index: 100;
background: var(--nav-bg);
border-bottom: 1px solid var(--border);
display: flex; align-items: center; justify-content: space-between;
padding: 0 1.25rem;
height: 52px;
transition: var(--transition-theme);
}
.nav-brand { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--text-primary); text-decoration: none; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 0; }
.nav-links a {
font-size: 14px; font-weight: 500; color: var(--text-secondary);
text-decoration: none; padding: 0 14px; height: 52px;
display: flex; align-items: center;
border-bottom: 2px solid transparent;
transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
/* ── LAYOUT ── */
.wrapper {
display: flex;
flex: 1;
max-width: 1100px;
margin: 0 auto;
width: 100%;
}
/* ── SIDEBAR ── */
aside {
width: var(--sidebar-width);
min-width: var(--sidebar-width);
background: var(--sidebar-bg);
color: var(--sidebar-text);
position: sticky;
top: 15px;
height: calc(120vh - 52px);
overflow-y: auto;
overflow-x: hidden;
padding: 28px 20px 32px;
display: flex;
flex-direction: column;
gap: 0;
}
#stars-canvas {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
pointer-events: none; z-index: 0;
}
.sidebar-inner { position: relative; z-index: 1; }
.avatar-wrap { text-align: center; margin-bottom: 20px; }
.avatar-img {
width: 180px; height: 180px; border-radius: 50%;
border: 2px solid var(--sidebar-border);
object-fit: cover; display: block;
margin: 0 auto 12px;
}
.sidebar-name {
font-family: 'Space Grotesk', sans-serif;
font-size: 17px; font-weight: 600; color: #e2e8f0;
line-height: 1.25;
}
.sidebar-title { font-size: 12.5px; color: var(--sidebar-muted); margin-top: 4px; line-height: 1.4; }
.sidebar-inst { font-size: 12.5px; color: var(--sidebar-accent); margin-top: 3px; font-weight: 500; }
.sidebar-divider { border: none; border-top: 1px solid var(--sidebar-border); margin: 16px 0; }
.sidebar-section { margin-bottom: 18px; }
.sidebar-section-label {
font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--sidebar-muted); margin-bottom: 10px; font-weight: 600;
}
.sidebar-info { display: flex; flex-direction: column; gap: 8px; }
.sidebar-info a, .sidebar-info span {
display: flex; align-items: center; gap: 8px;
font-size: 12.5px; color: var(--sidebar-text);
text-decoration: none; transition: color 0.15s;
}
.sidebar-info a:hover { color: var(--sidebar-link); }
.icon-wrap {
width: 18px; height: 18px; min-width: 18px;
display: flex; align-items: center; justify-content: center;
}
.icon-wrap svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-wrap img { width: 15px; height: 15px; display: block; object-fit: contain; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.etag {
font-size: 11px; padding: 3px 8px; border-radius: 20px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
color: #94a3b8;
}
/* ── MAIN ── */
main {
flex: 1;
padding: 36px 40px;
max-width: 800px;
}
.section { margin-bottom: 44px; }
.section-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px; font-weight: 600; color: var(--text-primary);
letter-spacing: -0.02em; margin-bottom: 18px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border);
}
/* ── BIO ── */
.bio-text { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.bio-text p + p { margin-top: 14px; }
.bio-text a { color: var(--accent); text-decoration: none; }
.bio-text a:hover { text-decoration: underline; }
.news-block {
background: var(--accent-gold-light);
border-left: 3px solid var(--accent-gold);
border-radius: 0 8px 8px 0;
padding: 12px 16px;
margin-top: 20px;
}
.news-block .news-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 8px; }
.news-item { display: flex; gap: 10px; align-items: baseline; font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
.news-date { font-size: 11.5px; color: var(--accent-gold); font-weight: 600; min-width: 70px; }
/* ── PUBLICATIONS ── */
.pub-list { display: flex; flex-direction: column; gap: 20px; }
.pub-card {
background: var(--content-bg);
border: 1px solid var(--border);
border-radius: 10px;
padding: 18px 20px;
transition: border-color 0.15s;
}
.pub-card:hover { border-color: #94a3b8; }
html.dark .pub-card:hover { border-color: #475569; }
.pub-top { display: flex; gap: 12px; align-items: flex-start; }
.pub-year-badge {
font-family: 'Space Grotesk', sans-serif;
font-size: 12px; font-weight: 700;
background: var(--nav-active); color: white;
padding: 3px 9px; border-radius: 20px;
min-width: 50px; text-align: center; flex-shrink: 0; margin-top: 2px;
}
html.dark .pub-year-badge { background: #334155; }
.pub-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px; font-weight: 600; color: var(--text-primary);
line-height: 1.4; margin-bottom: 5px;
}
.pub-authors { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
.pub-authors strong { color: var(--text-primary); }
.pub-journal { font-size: 13px; color: var(--text-muted); font-style: italic; }
.pub-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.pub-tag {
font-size: 11px; padding: 2px 8px; border-radius: 20px;
background: var(--tag-bg); color: var(--text-secondary);
border: 1px solid var(--border);
}
.pub-links { display: flex; gap: 8px; margin-top: 12px; }
.pub-link {
font-size: 12px; font-weight: 500;
padding: 4px 10px; border-radius: 6px;
text-decoration: none;
border: 1px solid var(--border);
color: var(--text-secondary);
transition: background 0.12s;
}
.pub-link:hover { background: var(--tag-bg); }
.pub-link.primary {
background: var(--accent); color: white; border-color: var(--accent);
}
.pub-link.primary:hover { background: #1d4ed8; }
/* ── TALKS ── */
.talk-list { display: flex; flex-direction: column; gap: 0; }
.talk-item {
display: flex; gap: 16px; align-items: flex-start;
padding: 16px 0;
border-bottom: 1px solid var(--border);
}
.talk-item:last-child { border-bottom: none; }
.talk-meta { min-width: 90px; }
.talk-date { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.talk-venue { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; }
.talk-body { flex: 1; }
.talk-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; line-height: 1.4; }
.talk-conf { font-size: 13px; color: var(--text-secondary); }
.talk-loc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.talk-badge {
display: inline-block; font-size: 10.5px; font-weight: 600;
padding: 2px 7px; border-radius: 20px; margin-top: 6px;
background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe;
}
.talk-badge.invited { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
html.dark .talk-badge { background: #1a2540; color: #7eb8f7; border-color: #2d4a7a; }
html.dark .talk-badge.invited { background: #0f2418; color: #4ade80; border-color: #166534; }
/* ── CV ── */
.cv-section { margin-bottom: 28px; }
.cv-section-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
color: var(--text-muted); margin-bottom: 12px;
}
.cv-entries { display: flex; flex-direction: column; gap: 16px; }
.cv-entry { display: flex; gap: 16px; }
.cv-year { min-width: 80px; font-size: 13px; color: var(--text-muted); font-weight: 600; padding-top: 1px; }
.cv-role { font-size: 14.5px; font-weight: 600; color: var(--text-primary); }
.cv-org { font-size: 13px; color: var(--accent); margin-top: 2px; }
.cv-desc { font-size: 13px; color: var(--text-secondary); margin-top: 3px; line-height: 1.5; }
/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
background: var(--content-bg);
border: 1px solid var(--border);
border-radius: 10px;
padding: 16px 18px;
display: flex; align-items: flex-start; gap: 12px;
}
.contact-icon {
width: 36px; height: 36px; border-radius: 8px;
background: var(--accent-light);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 11.5px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-value { font-size: 13.5px; color: var(--text-secondary); }
/* ── PAGE TABS ── */
.page-content { display: none; }
.page-content.active { display: block; }
/* ── FOOTER ── */
footer {
background: #0b0f1e; color: #475569;
text-align: center; padding: 18px;
font-size: 12.5px; border-top: 1px solid #1e2740;
}
footer a { color: #7eb8f7; text-decoration: none; }
html.dark footer { background: #080b14; border-top-color: #161c30; }
/* ── THEME TOGGLE ── */
.theme-toggle {
display: flex; align-items: center; justify-content: center;
width: 34px; height: 34px; border-radius: 8px;
background: none; border: 1px solid var(--border);
cursor: pointer; color: var(--text-secondary);
transition: background 0.15s, border-color 0.15s, color 0.15s;
flex-shrink: 0;
}
.theme-toggle:hover { background: var(--tag-bg); color: var(--text-primary); }
.theme-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* ── RESPONSIVE ── */
@media (max-width: 820px) {
.wrapper { flex-direction: column; }
aside { position: static; width: 100%; min-width: unset; height: auto; flex-direction: row; flex-wrap: wrap; padding: 20px; }
main { padding: 20px; }
nav { flex-wrap: wrap; height: auto; padding: 8px 12px; gap: 4px; }
.nav-links { flex-wrap: wrap; gap: 0; }
.contact-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- TOP NAV -->
<nav>
<a href="#" class="nav-brand">Marcus Lower</a>
<div style="display:flex;align-items:center;gap:4px;">
<div class="nav-links">
<a href="#" class="active" onclick="return showPage('about',this)">About</a>
<a href="#" onclick="return showPage('collaborations',this)">Collaborations</a>
<a href="#" onclick="return showPage('publications',this)">Publications</a>
<a href="#" onclick="return showPage('software',this)">Software</a>
<a href="#" onclick="return showPage('talks',this)">Talks</a>
<a href="#" onclick="return showPage('group',this)">Group</a>
<a href="#" onclick="return showPage('cv',this)">CV</a>
<!-- <a href="#" onclick="return showPage('contact',this)">Contact</a> -->
</div>
<button class="theme-toggle" id="theme-btn" aria-label="Toggle dark mode" onclick="toggleTheme()">
<svg id="icon-sun" viewBox="0 0 24 24" style="display:none"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"/></svg>
<svg id="icon-moon" viewBox="0 0 24 24"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</button>
</div>
</nav>
<div class="wrapper">
<!-- SIDEBAR -->
<aside style="position:relative;">
<canvas id="stars-canvas"></canvas>
<div class="sidebar-inner">
<div class="avatar-wrap">
<img src="Photos/bio.jpg" alt="Dr. Marcus Lower" class="avatar-img" />
<div class="sidebar-name">Dr. Marcus Lower</div>
<div class="sidebar-title">ARC DECRA Fellow | Astrophysicist</div>
<div class="sidebar-inst"><a href="https://www.swinburne.edu.au/" style="color: #f0a83a;">Swinburne University of Technology</a></div>
</div>
<hr class="sidebar-divider">
<div class="sidebar-section">
<div class="sidebar-section-label">Contact</div>
<div class="sidebar-info">
<a href="mailto:mlower@swin.edu.au">
<span class="icon-wrap"><svg viewBox="0 0 24 24"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m2 7 10 7 10-7"/></svg></span>
mlower@swin.edu.au
</a>
<a href="https://www.github.com/mlower">
<span class="icon-wrap"><svg viewBox="0 0 24 24"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"/></svg></span>
github.com/mlower
</a>
<a href="https://www.linkedin.com/in/marcus-lower-864a40272/">
<span class="icon-wrap"><svg viewBox="0 0 24 24"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg></span>
LinkedIn
</a>
<a href="https://bsky.app/profile/astromelow.bsky.social" target="_blank" rel="noopener">
<span class="icon-wrap">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7a/Bluesky_Logo.svg" alt="Bluesky" />
</span>
Bluesky
</a>
</div>
</div>
<hr class="sidebar-divider">
<div class="sidebar-section">
<div class="sidebar-section-label">Location</div>
<div class="sidebar-info">
<span>
<span class="icon-wrap"><svg viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z"/><circle cx="12" cy="9" r="2.5"/></svg></span>
<a href="https://en.wikipedia.org/wiki/Melbourne">Melbourne, VIC, Australia</a>
</span>
</div>
</div>
<hr class="sidebar-divider">
<div class="sidebar-section">
<div class="sidebar-section-label">Research Interests</div>
<div class="expertise-tags">
<span class="etag">Pulsars</span>
<span class="etag">Magnetars</span>
<span class="etag">Polarimetry</span>
<span class="etag">Fast radio bursts</span>
<span class="etag">Relativity</span>
<span class="etag">Gravitational waves</span>
</div>
</div>
<hr class="sidebar-divider">
<div class="sidebar-section">
<div class="sidebar-section-label">Metrics</div>
<div class="sidebar-info" style="gap:6px;">
<span style="justify-content:space-between;"><span>Publications</span><span style="color:#f0a83a;font-weight:600;">94</span></span>
<span style="justify-content:space-between;"><span>Citations</span><span style="color:#f0a83a;font-weight:600;">17,784</span></span>
<span style="justify-content:space-between;"><span>h-index</span><span style="color:#f0a83a;font-weight:600;">47</span></span>
<a href="https://ui.adsabs.harvard.edu/search/filter_property_fq_property=AND&filter_property_fq_property=property%3A%22refereed%22&fq=%7B!type%3Daqp%20v%3D%24fq_property%7D&fq_property=(property%3A%22refereed%22)&p_=0&q=%20author%3A%22Lower%2C%20Marcus%20E%22&sort=date%20desc%2C%20bibcode%20desc" style="color:var(--sidebar-link);font-size:11.5px;justify-content:flex-start;">NASA/ADS ↗</a>
</div>
</div>
</div>
</aside>
<!-- MAIN CONTENT -->
<main>
<!-- ABOUT -->
<div id="page-about" class="page-content active">
<div class="section">
<h1 class="section-heading">About me</h1>
<div class="bio-text">
<p>I am an Australian Research Council DECRA Fellow at the <a href="https://www.swinburne.edu.au/research/centres-groups-clinics/centre-for-astrophysics-supercomputing/">Centre for Astrophysics and Supercomputing</a> at Swinburne University of Technology. My research sits at the intersection of observational and statistical astrophysics, with a current focus on investigating the links between highly magnetised neutron stars and the mysterious fast radio burst phenomenon.</p>
<p>I combine Bayesian inference techniques with data from radio telescopes — primarily <a href="https://www.csiro.au/en/about/facilities-collections/ATNF/Parkes-radio-telescope-Murriyang">Parkes/Murriyang</a> and <a href="https://www.sarao.ac.za/science/meerkat/">MeerKAT</a> — to study two kinds of rotating neutron stars known as pulsars and magnetars. These objects emit beams of electromagnetic radiation from their magnetic poles which our telescopes detect as periodic trains of highly polarised radio pulses. I lead the Parkes 'P574' and 'P885' long-term projects, which respectively monitor 270 slow-spinning pulsars and four extremely rare radio-loud magnetars. These projects seek to understand how pulsars and magnetars evolve over their lifetimes, and be used as tools to map our Galaxy and test fundamental physics under extreme conditions.</p>
<p>Previously, I was a CERC postdoctoral fellow at the Australia Telescope National Facility based out of the CSIRO Marsfield site (2021-2024). I completed my PhD in 2022 at Swinburne University of Technology/CSIRO Space and Astronomy under <a href="https://experts.swinburne.edu.au/231-matthew-bailes">Prof. Matthew Bailes</a>, <a href="https://experts.swinburne.edu.au/3635-ryan-shannon">Prof. Ryan Shannon</a> and <a href="https://people.csiro.au/J/S/Simon-Johnston">Dr. Simon Johnston</a>.
</div>
<div class="news-block">
<div class="news-label">Recent news</div>
<div class="news-item"><span class="news-date">Jun 2025</span> JWST programme GO-4872 observations completed; reduction pipeline running.</div>
<div class="news-item"><span class="news-date">Apr 2025</span> New paper on sodium detection in WASP-39b accepted in <em>AJ</em>.</div>
<div class="news-item"><span class="news-date">Jan 2025</span> Awarded NSF AAG grant for M-dwarf stellar contamination study ($480k).</div>
<div class="news-item"><span class="news-date">Oct 2024</span> Invited review talk at DPS 2024, Boise, ID.</div>
</div>
</div>
</div>
<!-- PUBLICATIONS -->
<div id="page-publications" class="page-content">
<div class="section">
<h1 class="section-heading">Publications</h1>
<div class="bio-text">
<p>Below is a curated list of my first author publications. A complete list, including collaborative works, can be found via <a href="https://ui.adsabs.harvard.edu/search/filter_property_fq_property=AND&filter_property_fq_property=property%3A%22refereed%22&fq=%7B!type%3Daqp%20v%3D%24fq_property%7D&fq_property=(property%3A%22refereed%22)&p_=0&q=%20author%3A%22Lower%2C%20Marcus%20E%22&sort=date%20desc%2C%20bibcode%20desc">NASA/ADS</a>.</p>
<br>
</div>
<div class="pub-list">
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2026</span>
<div>
<div class="pub-title">Transient narrowband radio bursts from 1E 1547.0-5408</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Scholz, P., Camilo, F., Palmer, D. M., & 4 other co-authors</div>
<div class="pub-journal">Nature Astronomy (submitted)</div>
<div class="pub-tags">
<span class="pub-tag">Magnetar</span>
<span class="pub-tag">Fast radio bursts</span>
<span class="pub-tag">Spectropolarimetry</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2026arXiv260321450L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2603.21450" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2603.21450" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2025</span>
<div>
<div class="pub-title">The ubiquity of variable radio emission and spin-down rates in pulsars</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Karastergiou, A., Johnston, S., Brook, P. B., & 7 other co-authors</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 538, 3104</div>
<div class="pub-tags">
<span class="pub-tag">Pulsar population</span>
<span class="pub-tag">Rotational/emission variations</span>
<span class="pub-tag">Gaussian processes</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2025MNRAS.538.3104L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2501.03500" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2501.03500" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2024</span>
<div>
<div class="pub-title">MeerKAT observations of pair-plasma induced birefringence in the double pulsar eclipses</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Kramer, M., Johnston, S., Breton, R. P., & 9 other co-authors</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 534, 3936</div>
<div class="pub-tags">
<span class="pub-tag">Double pulsar</span>
<span class="pub-tag">Eclipses</span>
<span class="pub-tag">Spectropolarimetry</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2024MNRAS.534.3936L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2410.12510" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2410.12510" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2024</span>
<div>
<div class="pub-title">Linear to circular conversion in the polarized radio emission of a magnetar</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Johnston, S., Lyutikov, M., Melrose, D. B., & 12 other co-authors</div>
<div class="pub-journal">Nature Astronomy, 8, 606</div>
<div class="pub-tags">
<span class="pub-tag">Magnetar</span>
<span class="pub-tag">Spectropolarimetry</span>
<span class="pub-tag">Faraday conversion</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2024NatAs...8..606L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2311.04195" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2311.04195" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2024</span>
<div>
<div class="pub-title">A Millisecond Pulsar Binary Embedded in a Galactic Center Radio Filament</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Dai, S., Johnston, S. & Barr, E. D.</div>
<div class="pub-journal">The Astrophysical Journal Letters, 967, L16</div>
<div class="pub-tags">
<span class="pub-tag">Millisecond pulsar</span>
<span class="pub-tag">Galactic Center</span>
<span class="pub-tag">Non-thermal filaments</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...967L..16L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2404.09098" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2404.09098" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2024</span>
<div>
<div class="pub-title">A MeerKAT view of the double pulsar eclipses: Geodetic precession of pulsar B and system geometry</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Kramer, M., Shannon, R. M., Breton R. P. & 16 other co-authors.</div>
<div class="pub-journal">Astronomy & Astrophysics, 682, A26</div>
<div class="pub-tags">
<span class="pub-tag">Double pulsar</span>
<span class="pub-tag">Eclipses</span>
<span class="pub-tag">Spin-orbit precession</span>
<span class="pub-tag">Testing general relativity</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2024A%2526A...682A..26L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2311.06445" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2311.06445" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2023</span>
<div>
<div class="pub-title">Rotational and radio emission properties of PSR J0738-4042 over half a century</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Johnston, S., Karastergiou, A., Brook, P. B., & 13 other co-authors.</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 524, 5904</div>
<div class="pub-tags">
<span class="pub-tag">Pulsar</span>
<span class="pub-tag">Rotational/emission variations</span>
<span class="pub-tag">Gaussian processes</span>
<span class="pub-tag">Asteroids</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.524.5904L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2307.11953" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2307.11953" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2023</span>
<div>
<div class="pub-title">The 2022 High-energy Outburst and Radio Disappearing Act of the Magnetar 1E 1547.0-5408</div>
<div class="pub-authors"><strong>Lower, M. E.</strong>, Younes, G., Scholz, P., Camilo, F., & 18 other co-authors.</div>
<div class="pub-journal">The Astrophysical Journal, 261, 34</div>
<div class="pub-tags">
<span class="pub-tag">Magnetar</span>
<span class="pub-tag">Radio + X-ray</span>
<span class="pub-tag">Outburst</span>
<span class="pub-tag">Glitch</span> </div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...945..153L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2302.07397" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2302.07397" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2021</span>
<div>
<div class="pub-title">The impact of glitches on young pulsar rotational evolution</div>
<div class="pub-aumetalsthors"><strong>Lower, M. E.</strong>, Johnston, S., Dunn, L., Shannon, R. M., & 9 other co-authors.</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 508, 3251</div>
<div class="pub-tags">
<span class="pub-tag">Pulsar population</span>
<span class="pub-tag">Glitches</span>
<span class="pub-tag">Bayesian inference</span>
<span class="pub-tag">Long-term braking</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2021MNRAS.508.3251L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2109.07612" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2109.07612" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2021</span>
<div>
<div class="pub-title">The dynamic magnetosphere of Swift J1818.0-1607</div>
<div class="pub-aumetalsthors"><strong>Lower, M. E.</strong>, Johnston, S., Shannon, R. M., Bailes, M. & Camilo, F.</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 502, 127</div>
<div class="pub-tags">
<span class="pub-tag">Magnetar</span>
<span class="pub-tag">Emission geometry</span>
<span class="pub-tag">Spectropolarimetry</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2021MNRAS.502..127L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2011.12463" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2011.12463" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2020</span>
<div>
<div class="pub-title">Spectropolarimetric Properties of Swift J1818.0-1607: A 1.4 s Radio Magnetar</div>
<div class="pub-aumetalsthors"><strong>Lower, M. E.</strong>, Shannon, R. M., Johnston, S. & Bailes, M.</div>
<div class="pub-journal">The Astrophysical Journal Letters, 896, L37</div>
<div class="pub-tags">
<span class="pub-tag">Magnetar</span>
<span class="pub-tag">Spectropolarimetry</span>
<span class="pub-tag">High-B pulsars</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2020ApJ...896L..37L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2004.11522" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2004.11522" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2020</span>
<div>
<div class="pub-title">The UTMOST pulsar timing programme - II. Timing noise across the pulsar population</div>
<div class="pub-aumetalsthors"><strong>Lower, M. E.</strong>, Bailes, M., Shannon, R. M., Johnston, S., & 14 other co-authors.</div>
<div class="pub-journal">Monthly Notices of the Royal Astronomical Society, 494, 228</div>
<div class="pub-tags">
<span class="pub-tag">Pulsar population</span>
<span class="pub-tag">Glitches</span>
<span class="pub-tag">Timing noise</span>
<span class="pub-tag">Hierarchical Bayesian inference</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.494..228L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/2002.12481" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/2002.12481" class="pub-link">PDF</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2018</span>
<div>
<div class="pub-title"> Measuring eccentricity in binary black hole inspirals with gravitational waves </div>
<div class="pub-aumetalsthors"><strong>Lower, M. E.</strong>, Thrane, E., Lasky, P. D. & Smith, R.</div>
<div class="pub-journal">Physical Review D, 98, 083028</div>
<div class="pub-tags">
<span class="pub-tag">Binary black holes</span>
<span class="pub-tag">Gravitational waves</span>
<span class="pub-tag">Bayesian inference</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://ui.adsabs.harvard.edu/abs/2018PhRvD..98h3028L" class="pub-link primary">ADS</a>
<a href="https://arxiv.org/abs/1806.05350" class="pub-link">arXiv</a>
<a href="https://arxiv.org/pdf/1806.05350" class="pub-link">PDF</a>
</div>
</div>
</div>
</div>
</div>
<!-- SOFTWARE -->
<div id="page-software" class="page-content">
<div class="section">
<h1 class="section-heading">Software</h1>
<div class="bio-text">
<p>Here are some of the open-source software packages that I have developed or contributed to.</p>
<br>
</div>
<div class="pub-list">
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2022</span>
<div>
<div class="pub-title">RMNest</div>
<div class="pub-journal">Package for measuring both standard and generalised Faraday rotation.</div>
<div class="pub-tags">
<span class="pub-tag">Polarisation</span>
<span class="pub-tag">Pulsars</span>
<span class="pub-tag">Fast radio bursts</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://github.com/mlower/rmnest" class="pub-link primary">GitHub</a>
<a href="https://ascl.net/2204.008" class="pub-link">Publication</a>
</div>
</div>
<div class="pub-card">
<div class="pub-top">
<span class="pub-year-badge">2019</span>
<div>
<div class="pub-title">Bilby</div>
<div class="pub-journal">A Bayesian inference library for gravitational wave data analysis.</div>
<div class="pub-tags">
<span class="pub-tag">Bayesian inference</span>
<span class="pub-tag">Gravitational waves</span>
<span class="pub-tag">Statistical inference</span>
</div>
</div>
</div>
<div class="pub-links">
<a href="https://github.com/bilby-dev/bilby" class="pub-link primary">GitHub</a>
<a href="https://bilby-dev.github.io/bilby/" class="pub-link">Documentation</a>
<a href="https://ui.adsabs.harvard.edu/abs/2019ApJS..241...27A" class="pub-link">Publication</a>
</div>
</div>
</div>
</div>
</div>
<!-- TALKS -->
<div id="page-talks" class="page-content">
<div class="section">
<h1 class="section-heading">Talks & presentations</h1>
<div class="talk-list">
<div class="talk-item">
<div class="talk-meta">
<div class="talk-date">Oct 2024</div>
<div class="talk-venue">Invited</div>
</div>
<div class="talk-body">
<div class="talk-title">Reading the atmospheres of small planets with JWST: results and surprises from Cycle 1</div>
<div class="talk-conf">Division for Planetary Sciences Annual Meeting 2024</div>
<div class="talk-loc">Boise, ID, USA</div>
<span class="talk-badge invited">Invited review</span>
</div>
</div>
<div class="talk-item">
<div class="talk-meta">
<div class="talk-date">Aug 2024</div>
<div class="talk-venue">Contributed</div>
</div>
<div class="talk-body">
<div class="talk-title">Stellar contamination beyond a nuisance: turning starspots into probes of stellar physics</div>
<div class="talk-conf">IAU General Assembly XXX, Symposium 380</div>
<div class="talk-loc">Cape Town, South Africa</div>
<span class="talk-badge">Contributed</span>
</div>
</div>
<div class="talk-item">
<div class="talk-meta">
<div class="talk-date">Jan 2024</div>
<div class="talk-venue">Invited</div>
</div>
<div class="talk-body">
<div class="talk-title">From hot Jupiters to sub-Neptunes: a spectroscopist's journey through exoplanet atmospheres</div>
<div class="talk-conf">American Astronomical Society Meeting 243</div>
<div class="talk-loc">New Orleans, LA, USA</div>
<span class="talk-badge invited">Invited</span>
</div>
</div>
<div class="talk-item">
<div class="talk-meta">
<div class="talk-date">Jun 2023</div>
<div class="talk-venue">Contributed</div>
</div>
<div class="talk-body">
<div class="talk-title">GJ 1132b with JWST NIRSpec: CO₂ and implications for surface–atmosphere exchange</div>
<div class="talk-conf">Exoplanets V</div>
<div class="talk-loc">Leiden, Netherlands</div>
<span class="talk-badge">Contributed</span>
</div>
</div>
<div class="talk-item">
<div class="talk-meta">
<div class="talk-date">Nov 2022</div>
<div class="talk-venue">Colloquium</div>
</div>
<div class="talk-body">
<div class="talk-title">Probing exoplanet atmospheres from the ground and from space</div>
<div class="talk-conf">Caltech Astronomy Colloquium</div>
<div class="talk-loc">Pasadena, CA, USA</div>
<span class="talk-badge invited">Colloquium</span>
</div>
</div>
</div>
</div>
</div>
<!-- CV -->
<div id="page-cv" class="page-content">
<div class="section">
<h1 class="section-heading">Curriculum vitae</h1>
<a href="#" class="pub-link primary" style="display:inline-flex;align-items:center;gap:6px;margin-bottom:28px;font-size:13px;">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download full CV (PDF)
</a>
<div class="cv-section">
<div class="cv-section-title">Academic positions</div>
<div class="cv-entries">
<div class="cv-entry">
<div class="cv-year">2022–pres.</div>
<div class="cv-content">
<div class="cv-role">Associate Professor</div>
<div class="cv-org">University of Arizona, Department of Astronomy & Steward Observatory</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2019–2022</div>
<div class="cv-content">
<div class="cv-role">Assistant Professor</div>
<div class="cv-org">University of Arizona, Department of Astronomy</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2016–2019</div>
<div class="cv-content">
<div class="cv-role">NASA Sagan Postdoctoral Fellow</div>
<div class="cv-org">California Institute of Technology, Division of Geological & Planetary Sciences</div>
<div class="cv-desc">Advisor: Prof. Heather Knutson</div>
</div>
</div>
</div>
</div>
<div class="cv-section">
<div class="cv-section-title">Education</div>
<div class="cv-entries">
<div class="cv-entry">
<div class="cv-year">2016</div>
<div class="cv-content">
<div class="cv-role">Ph.D. Astronomy & Astrophysics</div>
<div class="cv-org">University of California, Santa Cruz</div>
<div class="cv-desc">Dissertation: <em>Chemical diversity in close-in giant planet atmospheres</em> — Advisor: Prof. Jonathan Fortney</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2011</div>
<div class="cv-content">
<div class="cv-role">B.Sc. Physics (with honors)</div>
<div class="cv-org">Universidad Nacional Autónoma de México (UNAM)</div>
</div>
</div>
</div>
</div>
<div class="cv-section">
<div class="cv-section-title">Grants & awards</div>
<div class="cv-entries">
<div class="cv-entry">
<div class="cv-year">2025</div>
<div class="cv-content">
<div class="cv-role">NSF AAG Grant — PI</div>
<div class="cv-desc">"Stellar contamination as a tool: exploiting M-dwarf heterogeneity to measure starspot properties" — $480,000</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2023</div>
<div class="cv-content">
<div class="cv-role">JWST GO Cycle 2 Programme (GO-4872) — PI</div>
<div class="cv-desc">42 hours NIRSpec/PRISM observations of temperate sub-Neptunes orbiting M dwarfs</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2021</div>
<div class="cv-content">
<div class="cv-role">Cottrell Scholar Award</div>
<div class="cv-org">Research Corporation for Science Advancement</div>
</div>
</div>
<div class="cv-entry">
<div class="cv-year">2016</div>
<div class="cv-content">
<div class="cv-role">NASA Sagan Fellowship</div>
<div class="cv-org">NASA Exoplanet Science Institute</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CONTACT -->
<!-- <div id="page-contact" class="page-content">
<div class="section">
<h1 class="section-heading">Contact</h1>
<p style="font-size:15px;color:var(--text-secondary);line-height:1.7;margin-bottom:24px;">I welcome inquiries from prospective graduate students and postdoctoral researchers interested in exoplanet atmospheres, stellar spectroscopy, or JWST data analysis. Please attach a short CV and a paragraph describing your research interests.</p>
<div class="contact-grid">
<div class="contact-card">
<div class="contact-icon">
<svg viewBox="0 0 24 24"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m2 7 10 7 10-7"/></svg>
</div>
<div>
<div class="contact-label">Email</div>
<div class="contact-value">evasquez@arizona.edu</div>
</div>
</div>
<div class="contact-card">
<div class="contact-icon">
<svg viewBox="0 0 24 24"><path d="M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z"/><circle cx="12" cy="10" r="3"/></svg>
</div>
<div>
<div class="contact-label">Office</div>
<div class="contact-value">Steward Observatory, Room 244<br>933 N Cherry Ave, Tucson AZ 85721</div>
</div>
</div>
<div class="contact-card">
<div class="contact-icon">
<svg viewBox="0 0 24 24"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.15 13a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.06 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 21 17z"/></svg>
</div>
<div>