:root {
  --bg: #f3efe6;
  --paper: #fffaf0;
  --ink: #10151f;
  --muted: #686158;
  --line: rgba(16, 21, 31, 0.12);
  --navy: #101b2d;
  --blue: #17375f;
  --gold: #b48a3c;
  --sage: #7f8f7c;
  --rust: #9a5c3d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 21, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 21, 31, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(181, 139, 59, 0.042) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(154, 92, 61, 0.15), transparent 26rem),
    radial-gradient(circle at 6% 18%, rgba(23, 55, 95, 0.12), transparent 28rem),
    var(--bg);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
main,
.footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  background: rgba(243, 239, 230, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 138, 60, 0.58);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.82);
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(16, 21, 31, 0.08);
}

.nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 24px);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav a {
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  min-height: calc(100vh - 76px);
  padding: 34px 0 64px;
}

.status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.status-line span {
  padding: 7px 10px;
  border: 1px solid rgba(16, 21, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.kicker,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.country-flags {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 700px;
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(3.05rem, 6.2vw, 6.5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.28;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 42px;
  overflow: hidden;
  padding: 0 16px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 21, 31, 0.14);
}

.button.primary {
  color: var(--paper);
  background: var(--navy);
}

.button.ghost {
  color: var(--navy);
  background: rgba(255, 250, 240, 0.6);
}

.button::after,
.contact-pill::after,
.group-link::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  transform: translateX(-115%);
  transition: transform 420ms ease;
}

.button:hover::after,
.contact-pill:hover::after,
.group-link:hover::after {
  transform: translateX(115%);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 118px));
  gap: 1px;
  max-width: 420px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.metric-row div {
  padding: 15px 14px;
  background: rgba(255, 250, 240, 0.78);
}

.metric-row strong {
  display: block;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-height: 38px;
  margin-top: 14px;
  overflow: hidden;
  padding: 0 15px;
  border: 1px solid rgba(16, 21, 31, 0.14);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-pill:hover {
  background: var(--white);
  box-shadow: 0 14px 30px rgba(16, 21, 31, 0.12);
  transform: translateY(-2px);
}

.portrait-panel {
  position: relative;
  max-width: 360px;
  padding: 14px;
  border: 1px solid rgba(180, 138, 60, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(16, 27, 45, 0.97), rgba(23, 55, 95, 0.9)),
    var(--navy);
  box-shadow: var(--shadow);
  animation: floatIn 620ms ease both;
}

.portrait-panel::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 86px;
  height: 86px;
  border-top: 1px solid rgba(180, 138, 60, 0.72);
  border-right: 1px solid rgba(180, 138, 60, 0.72);
  content: "";
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.78;
  border-radius: 22px;
  background: var(--navy);
}

.portrait-wrap::after {
  content: none;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.015);
}

.portrait-caption {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 0 2px;
  color: var(--paper);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-size: 1rem;
}

.portrait-caption span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 14px;
}

.tag-cloud span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
}

.social-under-photo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
}

.social-under-photo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.social-under-photo a:hover {
  background: rgba(255, 250, 240, 0.16);
  transform: translateY(-2px);
}

.social-under-photo i {
  font-size: 0.95rem;
}

.social-under-photo a:nth-child(3):hover {
  background: rgba(255, 0, 0, 0.18);
}

.social-under-photo a:nth-child(4):hover {
  background: rgba(10, 102, 194, 0.24);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.profile,
.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 66px);
}

.section-heading {
  margin-bottom: 26px;
}

.profile-copy p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.94rem);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-grid article {
  min-height: 205px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.focus-grid article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.focus-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
  transition: transform 180ms ease;
}

.focus-grid article:hover span {
  transform: rotate(-4deg) scale(1.06);
}

.focus-grid p,
.publication-list span,
.publication-list a,
.publication-feature a,
.map-card p,
.timeline span,
.link-grid small,
.journal-owned-grid small {
  color: var(--muted);
}

.focus-grid p {
  margin: 10px 0 0;
  font-size: 0.76rem;
}

.publication-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.publication-feature article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(16, 21, 31, 0.12);
  border-radius: 24px;
  background: var(--navy);
  color: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.publication-feature article:hover {
  transform: translateY(-4px);
}

.publication-feature article:nth-child(2) {
  background: #183c43;
}

.publication-feature h3 {
  margin-top: 40px;
  color: var(--paper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.pub-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-feature a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
}

.publication-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.publication-list article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 250, 240, 0.78);
  transition: background 160ms ease;
}

.publication-list article:hover {
  background: var(--white);
}

.publication-list span {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.publication-list a {
  align-self: flex-start;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.all-publications {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 250, 240, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.all-publications:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.research-group {
  border-top: 0;
  padding-top: 18px;
}

.group-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 22px;
  overflow: hidden;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(180, 138, 60, 0.36);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 8%, rgba(180, 138, 60, 0.32), transparent 13rem),
    linear-gradient(135deg, rgba(16, 27, 45, 0.98), rgba(23, 55, 95, 0.92));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.group-card::before {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 50%;
  content: "";
}

.group-copy,
.group-stats {
  position: relative;
  z-index: 1;
}

.group-copy h2 {
  margin-top: 10px;
  color: var(--paper);
}

.group-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.86rem;
}

.group-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  min-height: 44px;
  margin-top: 26px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.group-link:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.group-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.14);
}

.group-stats div {
  padding: 20px;
  background: rgba(255, 250, 240, 0.07);
  transition: background 180ms ease, transform 180ms ease;
}

.group-stats div:hover {
  background: rgba(255, 250, 240, 0.14);
  transform: scale(1.02);
}

.group-stats strong,
.group-stats span {
  display: block;
}

.group-stats strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1;
}

.group-stats span {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.research-map {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.64fr);
  gap: 18px;
}

.map-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(180, 138, 60, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.9)),
    repeating-linear-gradient(135deg, rgba(180, 138, 60, 0.18) 0 1px, transparent 1px 12px);
}

.map-card p {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 0.84rem;
}

.timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
}

.timeline div {
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
}

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

.journal-owned-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(180, 138, 60, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.72)),
    radial-gradient(circle at 88% 15%, rgba(180, 138, 60, 0.2), transparent 9rem);
  box-shadow: 0 16px 42px rgba(16, 21, 31, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.journal-owned-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.journal-owned-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
}

.journal-owned-grid strong,
.journal-owned-grid small,
.journal-owned-grid a {
  display: block;
}

.journal-owned-grid strong {
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.journal-owned-grid small {
  max-width: 420px;
  margin-top: 8px;
  font-size: 0.76rem;
}

.journal-owned-grid a {
  align-self: flex-start;
  min-height: 36px;
  margin-top: auto;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.journal-owned-grid a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tool-grid a {
  min-height: 172px;
  padding: 20px;
  background: rgba(255, 250, 240, 0.78);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.tool-grid a:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tool-grid i {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--navy);
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.tool-grid a:hover i {
  transform: rotate(-4deg) scale(1.06);
}

.tool-grid strong,
.tool-grid small {
  display: block;
}

.tool-grid strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.tool-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.link-grid a {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
  transition: background 160ms ease, transform 160ms ease;
}

.link-grid a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.link-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.link-grid a:hover span {
  transform: rotate(-4deg) scale(1.06);
}

.link-grid strong,
.link-grid small {
  display: block;
}

.link-grid strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.link-grid small {
  margin-top: 5px;
  font-size: 0.72rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--navy);
  font-weight: 900;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero,
  .research-map,
  .group-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-panel {
    max-width: 340px;
  }

  .profile,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .link-grid,
  .journal-owned-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-feature,
  .publication-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    flex: 1 1 auto;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 2px;
    font-size: 0.72rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0%, #000 84%, transparent 100%);
  }

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

  .nav a {
    padding: 5px 0;
    white-space: nowrap;
  }

  .brand {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13.5vw, 4.4rem);
  }

  .metric-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .focus-grid,
  .link-grid,
  .journal-owned-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid article {
    min-height: 170px;
  }

  .focus-grid span {
    margin-bottom: 28px;
  }

  .publication-list article {
    grid-template-columns: 1fr;
  }

  .social-under-photo {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
