/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/SourceSans3-Roman.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/SourceSans3-Roman-latinext.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/SourceSans3-Italic.woff2') format('woff2');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/SourceSans3-Italic-latinext.woff2') format('woff2');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Maple Mono NL';
  src: url('/fonts/MapleMonoNL-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Maple Mono NL';
  src: url('/fonts/MapleMonoNL-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   CSS variables
   ========================================================================== */

:root {
  /* Colors */
  --bg: #0d0f12;
  --text: #f0f0f0;
  --text2: #c8c8c8;
  --text-secondary: #9aa0a6;
  --accent: #e63946;
  --accent-hover: #e63946;
  --accent-light: #f06b75;
  --visited: #a855f7;
  --visited-hover: #c084fc;
  --visited-light: #d4aaff;
  --border: #333333;

  /* Layout */
  --h2-size: clamp(1.4rem, 3vw, 1.8rem);
  --max-content: 65ch;
  --max-wrapper: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --radius: 0px;
  --radius-nav: 0px;

  /* Typography */
  --font-body: 'Source Sans 3', 'Source Sans Pro', ui-sans-serif, system-ui, sans-serif;
  --font-ui: 'Maple Mono NL', ui-monospace, monospace;
  --font-mono: 'Maple Mono NL', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-footer-email: 'Source Sans 3', 'Source Sans Pro', ui-sans-serif, system-ui, sans-serif;

  /* Shared link icon (chain link SVG) */
  --link-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Base / reset
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 125%;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

main {
  display: block;
}

/* ==========================================================================
   Text selection
   ========================================================================== */

::selection {
  background: var(--accent-light);
  color: var(--text);
}

::-moz-selection {
  background: var(--accent-light);
  color: var(--text);
}

/* Invert selection colours for body content links and accent links. */
a:not(.site-nav a):not(.image-link)::selection,
.accent-link::selection {
  background: var(--text);
  color: var(--accent-light);
}

a:not(.site-nav a):not(.image-link):visited::selection,
.accent-link:visited::selection {
  background: var(--text);
  color: var(--visited-light);
}

a:not(.site-nav a):not(.image-link)::-moz-selection,
.accent-link::-moz-selection {
  background: var(--text);
  color: var(--accent-light);
}

a:not(.site-nav a):not(.image-link):visited::-moz-selection,
.accent-link:visited::-moz-selection {
  background: var(--text);
  color: var(--visited-light);
}

/* Post title links may wrap inline markup, so selection styles must apply to
   descendants as well. */
.post-title-link::selection,
.post-title-link ::selection {
  background: var(--text);
  color: var(--accent-light);
}

.post-title-link:visited::selection,
.post-title-link:visited ::selection {
  background: var(--text);
  color: var(--visited-light);
}

.post-title-link::-moz-selection,
.post-title-link ::-moz-selection {
  background: var(--text);
  color: var(--accent-light);
}

.post-title-link:visited::-moz-selection,
.post-title-link:visited ::-moz-selection {
  background: var(--text);
  color: var(--visited-light);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.page-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--nav-width, 320px) 1fr;
}

.page-content {
  grid-column: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) 0 0;
  position: relative;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--bg);
  color: var(--text);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-nav);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 1.1rem;
}

.nav-toggle {
  display: none;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transform: translateY(-10%);
  margin-right: 1.5rem;
}

.site-nav li {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-nav);
}

.site-nav .nav-content {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  padding: 0.25em 0.5em;
  border-radius: var(--radius-nav);
}

.site-nav a:hover .nav-content,
.site-nav a:focus .nav-content {
  background-color: var(--accent);
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus {
  background-color: transparent;
  opacity: 1;
}

.site-nav a:hover .nav-bracket,
.site-nav a:focus .nav-bracket,
.site-nav a[aria-current="page"]:hover .nav-bracket,
.site-nav a[aria-current="page"]:focus .nav-bracket {
  color: var(--text);
}

.site-nav a[aria-current="page"] .nav-bracket {
  color: var(--accent);
}

.nav-marker {
  display: inline-block;
  width: 2ch;
  text-align: left;
  color: var(--accent);
  white-space: pre;
}

.nav-bracket {
  color: var(--accent);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  line-height: 1.2;
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: var(--h2-size); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

p {
  margin: 0 0 var(--space-sm);
}

/* ==========================================================================
   Links
   ========================================================================== */

/* Default styling for body content links (excludes nav and image links). */
a:not(.site-nav a):not(.image-link) {
  color: var(--text);
  text-decoration: none;
  padding: 0.15em 0.4rem;
  border-radius: var(--radius-nav);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

a:not(.site-nav a):not(.image-link):hover,
a:not(.site-nav a):not(.image-link):focus {
  background-color: var(--accent);
  color: var(--text);
  opacity: 1;
}

a:not(.site-nav a):not(.image-link):visited {
  color: var(--text);
}

a:not(.site-nav a):not(.image-link):visited:hover,
a:not(.site-nav a):not(.image-link):visited:focus {
  background-color: var(--visited);
  color: var(--text);
}

/* Link icon shown before most main content links. */
main a:not(.site-nav a):not(.image-link):not(.post-title-link)::before {
  content: '';
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  background-color: var(--accent);
  mask-image: var(--link-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--link-icon);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

main a:not(.site-nav a):not(.image-link):hover::before,
main a:not(.site-nav a):not(.image-link):focus::before {
  background-color: var(--text);
}

main a:not(.site-nav a):not(.image-link):visited::before {
  background-color: var(--visited);
}

main a:not(.site-nav a):not(.image-link):visited:hover::before,
main a:not(.site-nav a):not(.image-link):visited:focus::before {
  background-color: var(--text);
}

/* Suppress the link icon on project cards and the footer GitLab link. */
.project-card a::before,
.footer-gitlab a::before {
  content: none !important;
}

/* Accent link variant (used for emphasized inline links). */
.accent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.accent-link::before {
  content: '';
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  background-color: currentColor;
  mask-image: var(--link-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--link-icon);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.accent-link:hover,
.accent-link:focus {
  color: var(--text);
  opacity: 1;
}

/* ==========================================================================
   Media and code
   ========================================================================== */

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

img[loading="lazy"] {
  content-visibility: auto;
}

.home-hero img {
  content-visibility: visible;
}

pre {
  background: #1e1e1e;
  padding: var(--space-sm);
  overflow-x: auto;
  border-radius: 0;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

figure {
  margin: var(--space-md) 0;
}

figcaption {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: center;
}

/* ==========================================================================
   Wrappers and sections
   ========================================================================== */

.wrapper {
  max-width: none;
  margin: 0;
  padding: 0;
}

.content {
  max-width: none;
  margin: 0;
}

section, main > .wrapper {
  padding: var(--space-md) 0;
}

/* ==========================================================================
   Home page
   ========================================================================== */

.home-container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--space-md);
  align-items: start;
  justify-items: stretch;
  max-width: 100%;
}

.home-hero {
  grid-column: 1 / -1;
  padding: 0;
}

.home-hero-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  text-align: left;
}

.home-hero-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.home-hero img {
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 320px;
  object-fit: cover;
  content-visibility: visible;
}

.home-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.35;
  margin: 0;
}

.home-roles {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0;
}

.home-mission {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.35;
  margin: 0;
  padding-top: 10%;
}

@media (max-height: 700px) {
  .home-mission {
    padding-top: 5%;
  }
}

.home-intro {
  grid-column: 1 / -1;
  padding: var(--space-md) 0;
}

.home-intro p {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  text-align: left;
  text-align-last: left;
}

/* ==========================================================================
   Projects
   ========================================================================== */

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.project-card {
  border: 1px solid var(--border);
  padding: var(--space-md);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-xs) var(--space-md);
  align-items: start;
}

.project-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-card h2 {
  grid-column: 1 / -1;
  font-size: 1.25rem;
  margin: 0;
  padding-right: 0.4rem;
}

.project-card .outcome {
  grid-column: 1 / -1;
  color: var(--text-secondary);
  margin: 0;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-bottom: 1rem;
}

.project-card .role {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  padding-left: 0.4rem;
}

.project-card .links {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  display: flex;
  gap: var(--space-sm);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.section-cta {
  margin-top: var(--space-md);
  font-family: var(--font-ui);
}

/* ==========================================================================
   Blog previews
   ========================================================================== */

.post-preview {
  margin-bottom: 0;
}

.post-preview-body {
  display: flex;
  align-items: stretch;
}

.post-preview time,
.post-preview-reading-time {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-secondary);
}

.post-preview-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-left: var(--space-sm);
}

.post-preview-main {
  display: flex;
  flex-direction: column;
}

.post-preview-content .post-preview-summary {
  margin-bottom: 0;
}

.post-preview-meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-xs);
  position: relative;
}

.post-preview-meta-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
}

.post-preview-meta .print-button {
  flex: 0 0 auto;
}

.post-preview h2,
.post-preview h3 {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
  padding-left: 0;
}

.post-preview h2 a {
  padding-left: 0.4rem;
}

.post-preview p {
  margin-bottom: 0;
}

.post-preview .post-preview-tagline,
.post-preview-meta {
  padding-left: 0.4rem;
}

.post-preview-tagline {
  color: var(--text-secondary);
}

.post-preview-thumb {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: #252a31;
  display: block;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
}

.post-preview-thumb:hover,
.post-preview-thumb:focus {
  background: #252a31;
  opacity: 1;
}

.post-preview-thumb img {
  width: auto;
  height: 100%;
  max-width: 400px;
  object-fit: cover;
  display: block;
}

.post-preview-thumb-placeholder {
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    #252a31,
    #252a31 10px,
    #303842 10px,
    #303842 20px
  );
}

.post-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--space-sm) 0;
  width: 100%;
}

/* ==========================================================================
   Blog post
   ========================================================================== */

.back-link {
  margin-top: var(--space-md);
  font-family: var(--font-ui);
}

.post-header {
  margin-bottom: var(--space-md);
}

.post-header h1 {
  margin-top: 0;
  margin-bottom: var(--space-xs);
}

.post-tagline {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.post-meta-line {
  font-family: var(--font-ui);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.post-meta-separator {
  color: var(--accent);
  margin: 0 0.35em;
}

.post-header-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--space-sm) 0 var(--space-md);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: var(--space-lg) 0;
  margin-top: auto;
  background-color: var(--bg);
}

.site-footer .wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: var(--space-sm);
}

.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.4;
}

.site-footer .footer-email {
  color: var(--text2);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 0.4rem;
}

.site-footer .footer-gitlab {
  color: var(--text-secondary);
}

.site-footer .footer-email .at-sign {
  color: var(--accent);
}

.site-footer .copyright {
  color: var(--text-secondary);
  text-align: right;
}

/* ==========================================================================
   Desktop layout
   ========================================================================== */

@media (width > 900px) {
  /* Pin the footer at the bottom of the viewport with a subtle gradient above
     it. The page itself scrolls normally, so the browser's default scrollbar
     is used. */
  .site-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .site-footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: var(--space-lg);
    pointer-events: none;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: -1;
  }

  /* Centre the whole page content as the viewport widens, so project cards
     never exceed two per row. The .project-grid reaches 3 columns once its
     container is at least ~904px wide. Capping the combined nav + main area at
     1200px keeps the main content at ~880px. The side padding is at least 6%
     of the viewport (≈82px at 1360px). */
  .page-wrapper {
    padding-left: max(6%, calc((100vw - 1200px) / 2));
    padding-right: max(6%, calc((100vw - 1200px) / 2));
  }
}

/* ==========================================================================
   Mobile layout
   ========================================================================== */

@media (max-width: 900px) {
  .page-wrapper {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: sticky;
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    width: auto;
    height: auto;
    grid-row: 1;
    padding: var(--space-sm) calc(var(--space-sm) * 1.5);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 50;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(13, 15, 18, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-nav);
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
  }

  .site-nav ul {
    position: absolute;
    top: 78%;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    transform: none;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-nav);
    padding: var(--space-xs) var(--space-sm);
    min-width: 180px;
    display: none;
  }

  .site-nav ul.is-open {
    display: flex;
  }

  .site-nav li {
    justify-content: flex-end;
  }

  .page-content {
    grid-column: 1;
    padding: var(--space-xs) calc(var(--space-sm) * 1.5) var(--space-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .home-hero-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-intro {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding: var(--space-md) calc(var(--space-sm) * 1.5);
    flex-shrink: 0;
  }

  .site-footer .wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "contact copyright";
  }

  .site-footer .footer-contact {
    grid-area: contact;
    justify-self: start;
    align-self: center;
  }

  .site-footer .copyright {
    grid-area: copyright;
    text-align: right;
    align-self: center;
  }

  /* Post preview stack on narrow screens. */
  .post-preview-body {
    flex-direction: column;
  }

  .post-preview-thumb {
    height: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
    display: block;
  }

  .post-preview-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    object-fit: cover;
  }

  .post-preview-thumb-placeholder {
    width: 100%;
    height: 100%;
  }

  .post-preview-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 var(--space-sm);
    align-items: baseline;
  }

  .post-preview-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .post-preview-meta {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--space-xs);
    padding-left: 0;
  }

  .post-preview-summary {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}
