:root {
  --red: #f0141e;
  --red-dark: #bc1118;
  --ink: #111827;
  --navy: #182033;
  --slate: #475569;
  --muted: #e2e8f0;
  --soft: #f6f7fb;
  --blue: #91aad1;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(15, 23, 42, .16);
  --max: 1180px;
  font-family: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 200;
  transform: translateY(-120%);
  border-radius: 0 0 6px 6px;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 42px);
  min-height: 132px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  min-width: min(760px, 54vw);
  height: 132px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
}

.brand-mark img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  flex: 1 1 420px;
  max-width: 620px;
}

.brand-wordmark img {
  width: 100%;
  height: auto;
}

.site-search {
  width: min(280px, 22vw);
}

.site-search input[type="search"],
.site-search input[type="text"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.main-nav .mod-menu,
.main-nav ul.menu,
.main-nav ul.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0;
  padding: 0;
}

.main-nav a,
.main-nav .mod-menu a {
  position: relative;
  display: block;
  padding: 10px 0;
}

.main-nav a::after,
.main-nav .mod-menu a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav .active > a::after,
.main-nav .current > a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: clamp(680px, calc(100vh - 92px), 860px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100%;
  padding: clamp(40px, 7vw, 96px);
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  content: "";
}

.slide-network::before {
  background-image: url("../images/slide-network.svg");
}

.slide-congress::before {
  background-image: url("../images/slide-events.svg");
}

.slide-impact::before {
  background-image: url("../images/slide-impact.svg");
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .68) 38%, rgba(255, 255, 255, .12) 70%);
  content: "";
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  width: min(650px, 100%);
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: #263449;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-readmore {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(240, 20, 30, .24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-ghost {
  border-color: rgba(15, 23, 42, .18);
  background: rgba(255, 255, 255, .66);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.slider-controls {
  position: absolute;
  left: clamp(40px, 7vw, 96px);
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 44px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, .28);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--red);
}

.news-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 8;
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.news-ticker strong {
  color: var(--red);
  text-transform: uppercase;
}

.news-ticker span {
  color: #dbe4ef;
}

.news-ticker a {
  margin-left: auto;
  font-weight: 800;
}

.news-ticker .moduletable,
.news-ticker .moduletable > * {
  display: contents;
}

.breadcrumbs-zone {
  width: min(var(--max), calc(100% - 40px));
  margin: 28px auto 0;
  color: var(--slate);
  font-size: 14px;
}

.breadcrumbs-zone ol,
.breadcrumbs-zone ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 96px auto;
  scroll-margin-top: 112px;
}

.main-top,
.main-bottom,
.content-section {
  margin-top: 64px;
  margin-bottom: 64px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.has-sidebar-left .content-layout {
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
}

.has-sidebar-right .content-layout {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
}

.has-sidebar-left.has-sidebar-right .content-layout {
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) minmax(180px, 230px);
}

.has-sidebar-left .sidebar-left {
  grid-column: 1;
}

.has-sidebar-left .content-main {
  grid-column: 2;
}

.has-sidebar-right:not(.has-sidebar-left) .content-main {
  grid-column: 1;
}

.has-sidebar-right:not(.has-sidebar-left) .sidebar-right {
  grid-column: 2;
}

.has-sidebar-left.has-sidebar-right .content-main {
  grid-column: 2;
}

.has-sidebar-left.has-sidebar-right .sidebar-right {
  grid-column: 3;
}

.content-main,
.sidebar {
  min-width: 0;
}

.content-main h1,
.content-main h2,
.content-main h3,
.content-main h4,
.content-main h5,
.content-main h6 {
  color: var(--ink);
  line-height: 1.08;
}

.content-main h1,
.page-header h1 {
  margin-top: 0;
  font-size: clamp(34px, 4.6vw, 64px);
}

.content-main a {
  color: var(--red);
  font-weight: 800;
}

.content-main p,
.content-main li {
  color: var(--slate);
  font-size: 17px;
}

.content-main img {
  border-radius: var(--radius);
}

.virtual-page {
  max-width: 980px;
}

.virtual-page-header {
  margin-bottom: 36px;
}

.virtual-page-header h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
}

.back-link {
  color: var(--red);
  font-weight: 900;
}

.virtual-page-content {
  color: var(--slate);
  font-size: 18px;
}

.virtual-page-content p,
.virtual-page-content li {
  color: var(--slate);
  font-size: 18px;
}

.virtual-page-content a {
  color: var(--red);
  font-weight: 900;
}

.virtual-page-content img {
  border-radius: var(--radius);
}

.com-content-article img[style*="float: left"],
.item-page img[style*="float: left"],
.mba-map-lead {
  float: left;
  width: min(600px, 52%);
  margin: 7px 33px 18px 0;
}

.article-info,
.article-info-term,
.tags,
.pagination,
.pagenavigation {
  display: none;
}

.sidebar .moduletable,
.main-top .moduletable,
.main-bottom .moduletable {
  border-top: 3px solid var(--red);
  padding-top: 18px;
}

.custom-hero .moduletable {
  width: 100%;
}

.intro-grid,
.board-preview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section h2,
.contact-section h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.section-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.metrics div {
  border-top: 3px solid var(--red);
  padding-top: 12px;
}

.metrics strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: var(--slate);
  font-size: 13px;
}

.map-panel {
  border-radius: var(--radius);
  background: radial-gradient(circle at 25% 20%, rgba(240, 20, 30, .18), transparent 34%), #f4f7fb;
  padding: clamp(20px, 3vw, 42px);
  box-shadow: var(--shadow);
}

.feature-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background: var(--navy);
  color: var(--white);
}

.feature-band h2 {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 18px;
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list p {
  color: #cbd5e1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading a {
  color: var(--red);
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.news-card {
  min-height: 240px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--soft);
}

.news-card-large {
  grid-row: span 2;
  min-height: 498px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(17, 24, 39, .94), rgba(17, 24, 39, .28)),
    url("../images/slide-events.svg") center/cover;
  color: var(--white);
}

.news-card h3 {
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
}

.news-card:not(.news-card-large) h3 {
  font-size: 25px;
}

.news-card p {
  color: inherit;
  opacity: .76;
}

.news-card a {
  color: var(--red);
  font-weight: 900;
}

.tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.document-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .08), transparent 45%),
    var(--white);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  scroll-margin-top: 112px;
}

.document-card h3 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
}

.document-card p {
  max-width: 56ch;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

.document-card .button {
  margin-top: auto;
}

.board-preview {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, .9fr);
}

.board-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.join-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 10% 0, rgba(240, 20, 30, .28), transparent 32%),
    linear-gradient(135deg, #111827, #263449);
  color: var(--white);
}

.join-section h2 {
  color: var(--white);
}

.slim-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15, 23, 42, .12);
}

.slim-links a {
  min-height: 92px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.slim-links a:hover {
  background: var(--red);
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(28px, 6vw, 72px);
  width: 100%;
  margin: 96px auto 0;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, calc((100vw - var(--max)) / 2 + 64px));
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .18), transparent 34%),
    linear-gradient(135deg, #101827, #263449);
  color: var(--white);
}

.contact-section p {
  max-width: 58ch;
  color: #d8e1ef;
}

.contact-section h2 {
  color: var(--white);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: center;
}

.contact-card,
.company-details {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.contact-card {
  display: grid;
  gap: 8px;
}

.contact-card span {
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.contact-card a {
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.company-details {
  display: grid;
  gap: 8px;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-details div {
  display: block;
}

.company-details dt {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: #dbe4ef;
  font-size: 13px;
}

.component-view {
  padding: 24px 0;
}

.component-shell {
  margin-top: 0;
}

.error-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.error-shell {
  width: min(100%, 920px);
}

.error-brand {
  display: block;
  width: min(420px, 100%);
  margin: 0 auto 28px;
}

.error-panel {
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 70px);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  line-height: 1;
}

.error-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 56px);
}

input,
select,
textarea {
  max-width: 100%;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  padding: 10px;
  text-align: left;
}

.alert {
  width: min(var(--max), calc(100% - 40px));
  margin: 24px auto;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--soft);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 118px;
    padding-right: 76px;
  }

  .brand {
    min-width: 0;
    height: 118px;
  }

  .brand-mark,
  .brand-mark img {
    width: 96px;
    height: 96px;
  }

  .brand-mark {
    flex-basis: 96px;
  }

  .brand-wordmark {
    max-width: 420px;
  }

  .menu-toggle {
    position: fixed;
    top: 26px;
    right: 20px;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 6px;
    background: var(--white);
    padding: 10px 12px;
    font-weight: 800;
    z-index: 2;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle span::before {
    top: -6px;
  }

  .menu-toggle span::after {
    top: 6px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .main-nav .mod-menu,
  .main-nav ul.menu,
  .main-nav ul.nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .main-nav a,
  .main-nav .mod-menu a {
    padding: 12px 0;
  }

  .intro-grid,
  .feature-band,
  .board-preview,
  .join-section,
  .contact-section,
  .document-grid,
  .news-grid,
  .has-sidebar-left .content-layout,
  .has-sidebar-right .content-layout,
  .has-sidebar-left.has-sidebar-right .content-layout {
    grid-template-columns: 1fr;
  }

  .has-sidebar-left .sidebar-left,
  .has-sidebar-left .content-main,
  .has-sidebar-right:not(.has-sidebar-left) .content-main,
  .has-sidebar-right:not(.has-sidebar-left) .sidebar-right,
  .has-sidebar-left.has-sidebar-right .content-main,
  .has-sidebar-left.has-sidebar-right .sidebar-right {
    grid-column: auto;
  }

  .news-card-large {
    min-height: 420px;
  }

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

  .company-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 86px;
    padding: 12px 68px 12px 16px;
  }

  .brand {
    gap: 10px;
    height: 62px;
  }

  .brand-mark,
  .brand-mark img {
    width: 62px;
    height: 62px;
  }

  .brand-mark {
    flex-basis: 62px;
  }

  .brand-wordmark {
    max-width: min(270px, calc(100vw - 156px));
  }

  .menu-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    transform: none;
    width: 44px;
    height: 40px;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    z-index: 2;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    padding: 34px 20px 86px;
  }

  .hero-copy {
    width: 100%;
    max-width: min(340px, calc(100vw - 40px));
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .76) 54%, rgba(255, 255, 255, .26) 100%);
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero p:not(.eyebrow) {
    font-size: 18px;
    max-width: min(330px, 100%);
  }

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

  .hero-actions .button {
    width: 100%;
    max-width: 260px;
  }

  .com-content-article img[style*="float: left"],
  .item-page img[style*="float: left"],
  .mba-map-lead {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }

  .news-ticker {
    display: grid;
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .news-ticker a {
    margin-left: 0;
    overflow-wrap: anywhere;
  }

  .section {
    width: calc(100% - 32px);
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .contact-section {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 0;
    padding: 44px 16px;
  }

  .metrics,
  .slim-links,
  .company-details {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
