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

html, body {
  width: 100%;
  height: 100%;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'Helvetica', 'Arial', sans-serif;
  color: #000000;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-header {
  height: 80px;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 16px 24px;
  grid-template-rows: auto 1fr;
}

.left-col {
  grid-column: 1 / 9;
}

.right-col {
  grid-column: 1 / 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
  gap: 24px;
}

.description {
  flex: 1;
  display: flex;
  align-items: center;
  line-height: 200%;
}

@media (min-width: 768px) {
  .nav-header {
    padding: 0 48px;
  }

  .main-content {
    grid-template-columns: repeat(24, 1fr);
    padding: 16px 48px;
    align-items: start;
  }

  .left-col {
    grid-column: 1 / 9;
    margin-bottom: 0;
  }

  .right-col {
    grid-column: 16 / 24;
    padding-bottom: 0;
    gap: 24px;
  }

  .description {
    display: block;
  }
}

.name, .location-text, .description, .contact-links a, .role {
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 0.12px;
}

.role {
  opacity: 0.5;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.triangle-icon {
  width: 14px;
  height: 14px;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-links a {
  text-decoration: none;
  color: inherit;
}

.contact-links a:hover {
  text-decoration: underline;
}
