/* Meet the founders page — load after site.css (separate file avoids stale cached site.css) */
.team-our-story p {
  margin-bottom: 1rem;
  line-height: 1.72;
  color: var(--color-ink);
}

.team-our-story p:last-child {
  margin-bottom: 0;
}

.founders-profiles {
  width: 100%;
  max-width: none;
  margin: 0 0 2.75rem;
  padding: 1.85rem 1.65rem;
  background: var(--surface-panel);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(8, 24, 79, 0.08);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .founders-profiles {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 2rem;
    align-items: stretch;
  }

  .founders-profiles .founder-spotlight:first-child {
    padding-right: 2rem;
    border-right: 1px solid rgba(8, 24, 79, 0.1);
  }
}

.founders-profiles .founder-spotlight {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.5rem 1.35rem;
  align-items: start;
  margin: 0;
  padding: 0;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

.founders-profiles .founder-spotlight__media {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.founders-profiles .founder-spotlight__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  text-align: left;
}

.founders-profiles .founder-spotlight__img {
  width: 118px;
  height: 118px;
  max-width: none;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 24px rgba(8, 24, 79, 0.12);
}

.founders-profiles .founder-spotlight__name {
  font-size: 1.22rem;
  font-weight: 600;
  text-align: left;
  margin: 0 0 0.15rem;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.founders-profiles .founder-spotlight__role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-align: left;
  margin: 0 0 0.7rem;
}

.founders-profiles .founder-spotlight__body p:not(.founder-spotlight__contact) {
  font-size: 0.9375rem;
  line-height: 1.66;
  margin: 0 0 0.6rem;
  color: var(--color-ink);
}

.founders-profiles .founder-spotlight__body p:last-child {
  margin-bottom: 0;
}

.founders-profiles .founder-spotlight__contact {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(8, 24, 79, 0.08);
  font-size: 0.875rem;
  text-align: left;
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .founders-profiles .founder-spotlight {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.35rem;
    min-height: 0;
    height: 100%;
  }

  .founders-profiles .founder-spotlight__media {
    grid-column: auto;
    grid-row: auto;
    flex-shrink: 0;
  }

  .founders-profiles .founder-spotlight__body {
    grid-column: auto;
    grid-row: auto;
    flex: 1 1 auto;
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .founders-profiles .founder-spotlight__contact {
    margin-top: auto;
  }
}

@media (max-width: 767px) {
  .founders-profiles .founder-spotlight:first-child {
    border-right: none;
    padding-right: 0;
  }

  .founders-profiles .founder-spotlight + .founder-spotlight {
    margin-top: 1.65rem;
    padding-top: 1.65rem;
    border-top: 1px solid rgba(8, 24, 79, 0.1);
  }
}

@media (max-width: 720px) {
  .founders-profiles {
    padding: 1.35rem 1.15rem;
    margin-bottom: 2rem;
  }

  .founders-profiles .founder-spotlight {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    row-gap: 0.85rem;
  }

  .founders-profiles .founder-spotlight__media {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .founders-profiles .founder-spotlight__body {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    text-align: center;
  }

  .founders-profiles .founder-spotlight__name,
  .founders-profiles .founder-spotlight__role,
  .founders-profiles .founder-spotlight__contact {
    text-align: center;
  }

  .founders-profiles .founder-spotlight__img {
    width: 132px;
    height: 132px;
  }
}
