:root {
  --navy: #2f2a63;
  --navy-2: #24204f;
  --brand-bg: #2e295d;
  --ink: #ecebff;
  --muted: #c6c3e7;
  --aqua: #00f9ff;
  --line: #585389;
  --panel: #ffffff0d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1f2550;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

.bg-grid {
  display: none;
}

.frame {
  width: min(1080px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand-bg);
  border-bottom: 1px solid #5b55a0;
  box-shadow: 0 10px 24px #17133540;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.menu-toggle {
  display: none;
  border: 1px solid #5b55a0;
  background: #ffffff14;
  border-radius: 0.6rem;
  padding: 0.5rem;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f6f6ff;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-radius: 0.7rem;
  border: 1px solid #5b55a0;
  background: var(--brand-bg);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 151px;
  height: auto;
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.topnav a {
  color: #f6f6ff;
  opacity: 0.92;
  text-decoration: none;
}

.topnav a:hover {
  color: var(--aqua);
}

.pill {
  border: 1px solid var(--line);
  background: #ffffff14;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
}

.hero {
  padding: 2rem 0 1.8rem;
  margin-top: 0.45rem;
  animation: rise 720ms ease-out;
}

.hero.card {
  background:
    linear-gradient(120deg, #ffffff33, #ffffff26),
    url("/hero_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.card .eyebrow,
.hero.card h1,
.hero.card .subtext {
  color: #f7f8ff !important;
  text-shadow: 0 2px 14px #0c1137e0;
}

.hero.card .hero-feature {
  background: #1f2548cc;
  border-color: #6f76a2;
  display: flex;
  flex-direction: column;
}

.hero.card .hero-feature strong,
.hero.card .hero-feature p {
  color: #f7f8ff;
}

.hero.card .hero-feature a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-feature-link {
  margin-top: 0.85rem;
  align-self: flex-start;
}

.hero.card .hero-feature .hero-feature-link {
  margin-top: auto;
  padding-top: 0.8rem;
}

.hero.card .hero-feature a:hover {
  color: #bff8ff;
}

.card {
  border: 1px solid #dde1ef;
  border-radius: 1.2rem;
  background: #ffffff;
  box-shadow: 0 16px 40px #0d14401a;
  padding: 1.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #2f2a63;
}

.hero.card .eyebrow-live {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.35em;
  color: #ffe2a0;
  animation: eyebrowPulse 2s ease-in-out infinite;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero.card .eyebrow-live {
    background-image: linear-gradient(
      110deg,
      #fff3d1 0%,
      #ffd78f 42%,
      #fff9ea 49%,
      #ffce67 52%,
      #ffd78f 60%,
      #fff3d1 100%
    );
    background-size: 185% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation:
      eyebrowShimmer 2.8s ease-in-out infinite,
      eyebrowPulse 2s ease-in-out infinite;
  }
}

h1 {
  font-size: clamp(2rem, 4.9vw, 3.9rem);
  line-height: 1.08;
  max-width: 26ch;
  margin: 0.4rem 0 1rem;
}

.subtext {
  color: #4a4f78;
  max-width: 80ch;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  text-decoration: none;
  border-radius: 0.75rem;
  padding: 0.78rem 1.05rem;
  font-weight: 600;
}

.primary {
  color: #0c1f2b;
  background: linear-gradient(160deg, #93f9ff, var(--aqua));
}

.ghost {
  color: #2f2a63;
  border: 1px solid #bcc3de;
  background: #f3f5fc;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding-bottom: 2.6rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  backdrop-filter: blur(2px);
  animation: rise 780ms ease-out;
}

.panel-accent {
  background:
    linear-gradient(120deg, #00f9ff24, #ffffff0b),
    radial-gradient(700px 350px at 100% 0%, #00f9ff24 0%, transparent 70%);
}

.panel h2 {
  margin: 0;
  font-size: 1.1rem;
}

.panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 0 0 7rem;
  color: var(--muted);
}

.footer-brand-lockup {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-separator {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.footer-copy {
  max-width: 963px;
  padding-top: 1.8rem;
  font-size: 1rem;
  line-height: 1.75;
  display: grid;
  gap: 0.8rem;
}

.footer-copy p {
  margin: 0;
}

.footer-top-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.55rem;
  width: 100%;
}

.footer-legal {
  max-width: 900px;
  color: #c6c3e7;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.65rem;
  max-width: 600px;
  margin-top: 0;
  flex: 0 1 auto;
  justify-items: start;
  order: 1;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.footer-office {
  border: 1px solid #6d68a7;
  border-radius: 0.6rem;
  padding: 0.3rem 0.45rem;
  background: #ffffff08;
  width: 100%;
  min-height: 132px;
  display: flex;
  flex-direction: column;
}

.footer-office-title {
  margin: 0 0 0.32rem;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5f6ff;
}

.footer-address {
  margin: 0;
  font-style: normal;
  line-height: 1.3;
  font-size: 0.84rem;
  color: #ffffff;
}

.footer-map-link {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.7rem;
  line-height: 1.2;
  color: #d8f8ff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-map-link:hover {
  color: #ffffff !important;
}

.footer-copy a,
.footer-reset {
  color: #f1f1ff;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-reset:hover {
  color: var(--aqua);
}

.footer-reset {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

/* ── Hero features ── */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0 1.4rem;
}

.hero-feature {
  background: #f7f9ff;
  border: 1px solid #dfe4f2;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem;
}

.hero-feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2f2a63;
  margin-bottom: 0.45rem;
}

.hero-feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4a4f78;
}

/* Contact page */
.contact-hero {
  margin-bottom: 1rem;
}

.contact-enquiries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-card {
  background: #f7f9ff;
  border: 1px solid #dfe4f2;
  border-radius: 0.9rem;
  padding: 1.05rem 1.15rem;
}

.contact-card--primary {
  background: #ffffff;
  border: 2px solid #5568cc;
  box-shadow: 0 0 0 4px #e9efff;
  padding: 1.2rem 1.3rem;
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #2f2a63;
}

.contact-card p {
  margin: 0;
  color: #4a4f78;
  line-height: 1.55;
}

.contact-link-list {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.28rem;
}

.contact-link-list a {
  color: #2430a5;
  text-decoration: none;
  font-weight: 600;
}

.contact-link-list a:hover {
  color: #0e63a7;
  text-decoration: underline;
}

.contact-offices {
  margin: 0.5rem 0 2rem;
}

.contact-offices h2 {
  margin: 0;
  color: #2f2a63;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}

.contact-offices-intro {
  margin: 0.35rem 0 1.1rem;
  color: #4a4f78;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-office {
  border: 1px solid #dfe4f2;
  border-radius: 0.9rem;
  background: #f8faff;
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}

.contact-office h3 {
  margin: 0;
  color: #2f2a63;
  font-size: 1.02rem;
}

.contact-office address {
  margin: 0;
  font-style: normal;
  color: #2f355f;
  line-height: 1.5;
}

.contact-office a {
  color: #2430a5;
  text-decoration: none;
  font-weight: 600;
}

.contact-office a:hover {
  color: #0e63a7;
  text-decoration: underline;
}

/* About page */
.about-page {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero.card.about-hero {
  margin-top: 0.45rem;
  background:
    linear-gradient(120deg, #1c2249db, #1c2249c4),
    url("/assets/images/meeting_room.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f7f8ff;
}

.hero.card.about-hero .eyebrow,
.hero.card.about-hero h1,
.hero.card.about-hero .subtext {
  color: #f7f8ff;
  text-shadow: 0 2px 14px #0c1137a8;
}

.hero.card.about-hero h1 {
  max-width: 20ch;
}

.about-kpi-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-kpi {
  border: 1px solid #8790c3;
  border-radius: 0.85rem;
  background: #232a54b5;
  padding: 0.95rem 1rem;
}

.about-kpi h2 {
  margin: 0;
  color: #f3f5ff;
  font-size: 1rem;
}

.about-kpi p {
  margin: 0.4rem 0 0;
  color: #d8dcf4;
  line-height: 1.5;
}

.about-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.about-story h2 {
  margin: 0.35rem 0 0.7rem;
  color: #2f2a63;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.about-story p {
  margin: 0 0 0.85rem;
  color: #444a77;
  line-height: 1.65;
}

.about-pillars {
  display: grid;
  gap: 0.75rem;
}

.about-pillar {
  border: 1px solid #d9def0;
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  background: #f8faff;
}

.about-pillar h3 {
  margin: 0;
  color: #2f2a63;
  font-size: 1rem;
}

.about-pillar p {
  margin: 0.4rem 0 0;
  color: #4a4f78;
}

.about-team h2 {
  margin: 0.35rem 0 0.45rem;
  color: #2f2a63;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
}

.team-group-title {
  margin: 1.25rem 0 0.8rem;
  color: #2f2a63;
  font-size: 1.08rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-card {
  border: 1px solid #dfe4f2;
  border-radius: 0.9rem;
  background: #f9fbff;
  padding: 0.75rem;
  display: grid;
  gap: 0.42rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.7rem;
  object-fit: cover;
  border: 1px solid #d5dbec;
}

.team-card h4 {
  margin: 0.22rem 0 0;
  color: #25205a;
  font-size: 1rem;
}

.team-role {
  margin: 0;
  color: #2430a5;
  font-weight: 600;
  font-size: 0.92rem;
}

.team-card p {
  margin: 0;
  color: #4a4f78;
  line-height: 1.5;
  font-size: 0.92rem;
}

.about-careers {
  background: linear-gradient(135deg, #f9fbff 0%, #eef3ff 100%);
}

.about-careers h2 {
  margin: 0.35rem 0 0.7rem;
  color: #2f2a63;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
}

.about-careers p {
  margin: 0;
  color: #4a4f78;
  line-height: 1.65;
}

.about-careers-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Logo sections ── */
.logo-section {
  padding: 3rem 0;
  background: #ffffff;
}

.latest-news-strip {
  padding: 0.3rem 0 0.9rem;
}

.latest-news-strip__inner {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #d5dbec;
  border-radius: 0.7rem;
  background: #f8faff;
}

.latest-news-strip__label {
  flex: 0 0 auto;
  font-weight: 700;
  color: #2f2a63;
  text-decoration: none;
}

.latest-news-strip__label:hover {
  color: #1f4ec9;
  text-decoration: underline;
}

.latest-news-strip__text {
  margin: 0;
  color: #3b416d;
  line-height: 1.45;
  font-size: 0.96rem;
}

.latest-news-strip__text--highlighted {
  padding: 0;
  border: 0;
  background: transparent;
}

.latest-news-strip__stat {
  font-weight: 700;
  color: #103d6a;
}

.latest-news-strip__highlight {
  font-weight: 700;
  color: #1f2f8d;
}

.logo-section--dark {
  border-top: 1px solid #dde1ef;
  border-bottom: 1px solid #dde1ef;
}

.logo-section--mid {
  background: #ffffff;
  border-bottom: 1px solid #dde1ef;
}

.logo-section--mid .logo-section__title {
  color: #2f2a63;
}

.logo-section__title {
  color: #2f2a63;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}

.logo-grid {
  width: min(1080px, calc(100% - 2.4rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding: 0 1.2rem;
}

.logo-section__title {
  padding: 0 1.2rem;
  width: min(1080px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  border: 1px solid #d9deee;
  background: #ffffff;
  min-height: 110px;
  padding: 0.8rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.logo-section--dark .logo-tile {
  background: var(--brand-bg);
}

.logo-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0005;
}

.logo-mark {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.logo-mark--hashkey {
  max-height: 72px;
}

.logo-mark--lseg {
  max-height: 74px;
}

.logo-mark--arta {
  max-height: 72px;
}

.logo-mark--ion {
  max-height: 74px;
}

.logo-mark--equinix {
  max-height: 74px;
}

.footer-shell {
  background: linear-gradient(170deg, #332d6b, #272252 62%, #211d46);
  border-top: 1px solid #5b55a0;
  margin-top: 1.6rem;
}

/* ── Footer social ── */
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  padding-top: 0.2rem;
}

.footer-bottom-row > * {
  position: relative;
}

.footer-bottom-row > * + * {
  margin-left: 0.55rem;
  padding-left: 0.7rem;
}

.footer-bottom-row > * + *::before {
  content: "|";
  position: absolute;
  left: 0;
  color: #a9a5cc;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
  border-radius: 4px;
  transition: opacity 0.15s;
  margin-top: 0.15rem;
  margin-left: auto;
  align-self: flex-start;
  order: 2;
}

.footer-social-link:hover {
  opacity: 0.8;
}

@media (max-width: 860px) {
  .hero-features {
    grid-template-columns: 1fr;
  }

  .contact-enquiries,
  .contact-office-grid,
  .about-kpi-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .latest-news-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .topbar {
    position: relative;
    align-items: center;
    flex-wrap: nowrap;
  }

  .topnav {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0;
    border: 1px solid #8e8ca8;
    border-radius: 0.95rem;
    background: #7a7f8bc9;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 34px #14172d55;
    overflow: hidden;
  }

  .topnav.is-open {
    display: flex;
  }

  .topnav a {
    display: block;
    padding: 0.82rem 1rem;
    border-bottom: 1px solid #c9ced966;
    color: #f6f8ff;
    font-size: 1.02rem;
    text-decoration: none;
  }

  .topnav a:last-child {
    border-bottom: 0;
  }

  .topnav a:hover,
  .topnav a:focus-visible {
    background: #cfd3dc24;
    color: #ffffff;
  }

  .topnav .pill {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0.82rem 1rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top-row {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-social-link {
    margin-left: 0;
    order: 1;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    max-width: 100%;
    order: 2;
  }

  .footer-office {
    min-height: unset;
  }

  .footer-bottom-row {
    display: grid;
    gap: 0.35rem;
    align-items: flex-start;
  }

  .footer-bottom-row > * {
    justify-self: start;
  }

  .footer-bottom-row > * + * {
    margin-left: 0;
    padding-left: 0;
  }

  .footer-bottom-row > * + *::before {
    content: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  width: min(1040px, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 1rem 1.1rem;
  border: 1px solid #5b55a0;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2e295df2, #231f49f2);
  box-shadow: 0 18px 40px #100d2f59;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 62ch;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.cookie-banner__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner__text a {
  color: #f1f1ff;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-button {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button--ghost {
  color: #f8f8ff;
  border: 1px solid var(--line);
  background: #ffffff10;
}

.cookie-button--primary {
  color: #0c1f2b;
  border: 1px solid transparent;
  background: linear-gradient(160deg, #93f9ff, var(--aqua));
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eyebrowShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes eyebrowPulse {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 0.16rem #ffd78d55);
  }

  50% {
    filter: brightness(1.1) drop-shadow(0 0 0.42rem #ffd792b5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.card .eyebrow-live {
    animation: none;
    filter: none;
    background-position: 50% 50%;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 128px;
  }

  .topbar {
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .topnav {
    gap: 0.5rem;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .pill {
    padding: 0.5rem 0.85rem;
  }

  .card {
    padding: 1.1rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 9.75rem;
  }

  .cookie-banner {
    bottom: 0.75rem;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1 1 0;
    text-align: center;
  }
}