.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  margin-top: 70px;
}

.page-header {
  padding-bottom: 1.8rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.breadcrumb {
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none
}

.breadcrumb a:hover {
  color: var(--accent-green)
}

.breadcrumb span {
  opacity: .35
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: .4rem;
  letter-spacing: .02em
}

.page-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.section {
  margin-bottom: 2.8rem
}

.s-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: .5rem
}

.s-title::before {
  content: '';
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: var(--accent-gold);
  flex-shrink: 0
}

/* FOUNDERS */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s
}

.founder-card:hover {
  border-color: rgba(245, 158, 11, .25)
}

.founder-top {
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid var(--border-color)
}

.founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .9rem;
  border: 1px solid var(--border-color)
}

.founder-role-tag {
  display: inline-block;
  padding: .15rem .65rem;
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  background: rgba(245, 158, 11, .1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, .2)
}

.founder-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .15rem
}

.founder-cred {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: .6rem
}

.founder-quote {
  font-size: .77rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  border-left: 2px solid rgba(245, 158, 11, .3);
  padding-left: .8rem
}

.founder-bottom {
  padding: 1.2rem 1.5rem
}

.founder-bio {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .9rem
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem
}

.tag {
  padding: .16rem .6rem;
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 600;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted)
}

/* DEPT TABS */
.dept-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap
}

.dept-tab {
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  background: none;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif
}

.dept-tab:hover {
  border-color: var(--accent-green);
  color: var(--accent-green)
}

.dept-tab.active {
  background: rgba(196, 161, 114, .1);
  border-color: rgba(196, 161, 114, .3);
  color: var(--accent-green)
}

.dept-panel {
  display: none
}

.dept-panel.active {
  display: block
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: border-color .2s
}

.team-card:hover {
  border-color: rgba(196, 161, 114, .2)
}

.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  margin-bottom: .7rem;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary)
}

.tc-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: .1rem
}

.tc-title {
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: .55rem;
  line-height: 1.35
}

.tc-bio {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .65rem
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem
}

.tc-tag {
  padding: .12rem .5rem;
  border-radius: 100px;
  font-size: .58rem;
  font-weight: 600;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted)
}

/* ADVISORS */
.advisor-list {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.advisor-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  transition: border-color .2s
}

.advisor-item:hover {
  border-color: rgba(245, 158, 11, .2)
}

.adv-ico {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .05rem
}

.adv-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: .12rem
}

.adv-title {
  font-size: .7rem;
  color: var(--accent-gold);
  margin-bottom: .3rem
}

.adv-desc {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.55
}

/* OPEN ROLES */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  transition: border-color .2s
}

.role-item:hover {
  border-color: rgba(196, 161, 114, .2)
}

.role-left {}

.role-dept {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-green);
  margin-bottom: .2rem
}

.role-name {
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-secondary)
}

.role-type {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .1rem
}

.role-apply {
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 161, 114, .3);
  color: var(--accent-green);
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif
}

.role-apply:hover {
  background: rgba(196, 161, 114, .08)
}


@media(max-width:700px) {

  .founders-grid,
  .team-grid {
    grid-template-columns: 1fr
  }

  .nav-links {
    display: none
  }
}