/* ==========================================================================
   Academic Homepage Design System
   Ported from https://github.com/Laip11/academic-homepage-template (MIT)
   Theme: Oxford Blue
   ========================================================================== */

:root {
  --font-body: "Nunito Sans", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Nunito Sans", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", Georgia, "Times New Roman", sans-serif;
  --primary-text: #0f172a;
  --secondary-text: #475569;
  --muted-text: #64748b;

  --accent-color: #002147;
  --accent-hover: #1d4066;
  --accent-bg: #edf2f8;
  --accent-border: #bccfe3;

  --link-color: #1a4e8a;
  --border-color: #cbd5e1;
  --border-light: #e2e8f0;
  --bg-page: #eef2f8;
  --card-bg: #ffffff;
  --card-inner-bg: #ffffff;
  --callout-bg: #eef3f9;
  --callout-border: #c9d9ea;
  --callout-text: #16324f;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--secondary-text);
  line-height: 1.7;
  background-color: var(--bg-page);
  background-image:
    radial-gradient(at 12% 12%, rgba(0, 33, 71, 0.10) 0px, transparent 42%),
    radial-gradient(at 88% 14%, rgba(0, 90, 156, 0.09) 0px, transparent 42%),
    radial-gradient(at 50% 60%, rgba(31, 78, 134, 0.06) 0px, transparent 50%),
    radial-gradient(rgba(148, 163, 184, 0.35) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed, fixed, fixed, scroll;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ==========================================================================
   FLOATING DYNAMIC ISLAND NAVIGATION (APPLE / LINEAR STYLE)
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 12px 28px -4px rgba(15, 23, 42, 0.08);
  padding: 5px 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 38px;
  padding: 0 4px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--primary-text);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  transition: color 0.18s ease;
}

.nav-brand svg {
  display: block;
  flex-shrink: 0;
  translate: 0 -0.5px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.nav-brand:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.nav-brand:hover svg {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-sep {
  flex-shrink: 0;
  align-self: center;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: rgba(100, 116, 139, 0.55);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  color: #64748b;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a svg {
  display: block;
  flex-shrink: 0;
  translate: 0 -0.5px;
  opacity: 0.85;
}

.nav-links a:hover {
  color: var(--primary-text);
  background: rgba(15, 23, 42, 0.05);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--accent-color);
  background: var(--accent-bg);
  box-shadow: inset 0 0 0 1px var(--accent-border);
  text-decoration: none;
}

/* ==========================================================================
   MAIN CONTAINER CARD (SCHEME A FROSTED GLASS)
   ========================================================================== */
.main-container {
  max-width: var(--max-width);
  margin: 32px auto 48px;
  padding: 44px 50px 52px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(203, 213, 225, 0.6),
    0 4px 6px -1px rgba(15, 23, 42, 0.03),
    0 20px 48px -8px rgba(15, 23, 42, 0.08);
  position: relative;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.profile-avatar {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.profile-avatar:hover {
  transform: scale(1.03);
}

.profile-avatar-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.profile-tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--secondary-text);
  text-align: center;
}

.profile-name {
  margin: 0;
  line-height: 1.15;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--primary-text);
  letter-spacing: -0.015em;
}

.profile-role {
  margin: 6px 0 5px;
  color: var(--secondary-text);
  font-weight: 600;
  font-size: 0.98rem;
}

.role-sep {
  font-weight: 800;
  margin: 0 8px;
  color: var(--muted-text);
}

.profile-research {
  margin: 0 0 5px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.5;
}

.label-strong {
  font-weight: 700;
  color: var(--primary-text);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

/* Spread the five quick-link pills edge-to-edge when the info column is roomy;
   below this width the pills wrap, where left alignment looks better */
@media (min-width: 1200px) {
  .quick-links {
    justify-content: space-between;
  }
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #d8e0ea;
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.18s ease;
}

.quick-link svg {
  flex-shrink: 0;
  color: inherit;
}

.quick-link:hover {
  border-color: var(--accent-border);
  background: var(--accent-bg);
  color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 33, 71, 0.14);
  text-decoration: none;
}

.profile-info {
  flex: 0 1 auto;
  min-width: 0;
}

.profile-location {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
}

.location-photo {
  display: block;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease;
}

.location-photo:hover {
  transform: scale(1.02);
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted-text);
  white-space: nowrap;
}

.location-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-color);
}

/* ==========================================================================
   SECTION HEADINGS & TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  color: var(--primary-text);
  font-family: var(--font-heading);
  font-weight: 700;
}

.section-title .title-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-text);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-text);
  margin-top: 42px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border-light);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  scroll-margin-top: 88px;
}

.subsection-title {
  font-size: 1.15rem;
  border-bottom: none;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-bottom: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.lead {
  font-size: 0.96rem;
  color: #334155;
  margin-top: 8px;
  line-height: 1.7;
  text-align: justify;
}

.lead + p {
  text-align: justify;
}

.research-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 0.96rem;
  color: #334155;
}

.research-list li {
  margin: 3px 0;
  line-height: 1.65;
  text-align: justify;
}

.collab-callout {
  margin: 18px 0 0;
  padding: 13px 16px;
  border: 1px solid var(--callout-border);
  border-left: 3.5px solid #1f5c96;
  border-radius: 10px;
  background: var(--callout-bg);
  color: var(--callout-text);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* Recruiting callout: light red block with megaphone icon */
.recruit-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px 16px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-left: 3.5px solid #e11d48;
  border-radius: 10px;
  color: #9f1239;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.65;
}

.recruit-callout-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.recruit-callout a {
  color: #be123c;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recruit-callout a:hover {
  color: #9f1239;
}

/* ==========================================================================
   MODERN LIST (NEWS, HONORS, SERVICES)
   ========================================================================== */
.modern-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.modern-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  line-height: 1.65;
  color: var(--secondary-text);
}

.modern-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.8;
}

.modern-list-date {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--accent-color);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  padding: 1px 7px;
  border-radius: 999px;
  margin-right: 8px;
  line-height: 1.4;
  white-space: nowrap;
}

.modern-list-content {
  display: inline;
}

.modern-list-content strong {
  color: var(--primary-text);
}

/* ==========================================================================
   NEWS SCROLLABLE BOX (latest 5 visible, rest scroll inside)
   ========================================================================== */
.news-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.news-scroll::-webkit-scrollbar {
  width: 6px;
}

.news-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.news-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.news-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent-border);
}

/* ==========================================================================
   EXPERIENCE & EDUCATION CARDS
   ========================================================================== */
.exp-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 3.5px solid #1f5c96;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.exp-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.08);
}

.exp-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 12px;
}

.exp-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-text);
}

.exp-date {
  font-size: 0.82rem;
  color: var(--accent-color);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  padding: 3px 11px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  justify-self: end;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.exp-org {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.exp-desc {
  font-size: 0.87rem;
  color: var(--muted-text);
  line-height: 1.55;
  margin-top: 2px;
}

/* ==========================================================================
   BENTO GRID FOR ACADEMIC SERVICES
   ========================================================================== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.service-tile {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -2px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tile-conf-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* CCF rank tints: A matches the publications CCF badge, B/C fade lighter */
.service-tile.conf-a {
  background: #fffbeb;
  border-color: #fcd34d;
}

.service-tile.conf-a .tile-conf-name {
  color: #b45309;
}

.service-tile.conf-b {
  background: #fffdf3;
  border-color: #fee9b0;
}

.service-tile.conf-b .tile-conf-name {
  color: #c99a3b;
}

.service-tile.conf-c {
  background: #fffefa;
  border-color: #fff3d6;
}

.service-tile.conf-c .tile-conf-name {
  color: #d9bc74;
}

/* Inline CCF-rank chips for the per-year reviewer list (same tints as .ccf-badge) */
.conf-chip {
  display: inline-flex;
  align-items: center;
  padding: 2.5px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  vertical-align: middle;
  white-space: nowrap;
}

.conf-chip + .conf-chip {
  margin-left: 6px;
}

.conf-chip.a {
  background: #fde68a;
  border-color: #f59e0b;
  color: #92400e;
}

.conf-chip.b {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #b45309;
}

.conf-chip.c {
  background: #fffbeb;
  border-color: #fde68a;
  color: #b45309;
}

.tile-years {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tile-year-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 1.5px 7px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent-color);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PUBLICATIONS & PAPER CARDS (image-free variant)
   ========================================================================== */
.publications-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.muted-note {
  font-size: 0.83rem;
  color: var(--muted-text);
  margin: 0;
}

.paper-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.paper-card:hover {
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.paper-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.paper-authors {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.55;
}

.paper-authors strong {
  color: var(--primary-text);
  font-weight: 600;
}

.paper-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.conf-badge {
  background: var(--accent-bg);
  color: var(--accent-color);
  border: 1px solid var(--accent-border);
  padding: 2.5px 9px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ccf-badge {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fcd34d;
  padding: 2.5px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Rank tints fade A -> C */
.ccf-badge.a {
  background: #fde68a;
  border-color: #f59e0b;
  color: #92400e;
}

.ccf-badge.b {
  background: #fef3c7;
  border-color: #fcd34d;
}

.ccf-badge.c {
  background: #fffbeb;
  border-color: #fde68a;
}

.ccf-badge.q1 {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1a4e8a;
}

.paper-venue .ccf-badge {
  white-space: nowrap;
}

.paper-venue {
  font-size: 0.85rem;
  color: var(--muted-text);
  line-height: 1.55;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.paper-venue em {
  font-style: italic;
}

.paper-note {
  font-size: 0.82rem;
  color: #dc2626;
  line-height: 1.5;
}

.paper-links {
  display: inline-flex;
  gap: 5px;
}

.paper-btn {
  display: inline-flex;
  align-items: center;
  padding: 3.5px 12px;
  border: 1px solid #d8e0ea;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  background: #fff;
  transition: all 0.18s ease;
  gap: 5px;
}

.paper-btn:hover {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  color: var(--accent-color);
  text-decoration: none;
}

.paper-btn-primary {
  background: #002147;
  border-color: #002147;
  color: #ffffff;
}

.paper-btn-primary:hover {
  background: #1d4066;
  border-color: #1d4066;
  color: #ffffff;
}

.paper-btn-secondary {
  background: #fff;
  border-color: var(--accent-border);
  color: var(--accent-color);
}

.paper-btn-secondary:hover {
  background: var(--accent-bg);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto 36px;
  padding: 20px 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-text);
}

.site-footer a {
  color: var(--secondary-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: var(--accent-color);
}

.site-footer .footer-flag {
  margin: 0 0 6px;
}

.site-footer .footer-flag img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 4px 6px;
  }

  .nav-brand span {
    display: none;
  }

  .main-container {
    margin: 14px 12px 32px;
    padding: 24px 18px 36px;
    border-radius: 16px;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .profile-location {
    flex: none;
    width: 100%;
  }

  .location-photo {
    flex: none;
    height: 170px;
  }

  .location-address {
    white-space: normal;
  }

  .nav-inner {
    padding: 0 14px;
  }

  .exp-header {
    grid-template-columns: 1fr auto;
  }

  .exp-org {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
