/* Make Twenty Fifteen content area wider so 2-column grids can fit */
@media screen and (min-width: 800px) {
    .site-content {
			max-width: 1200px;      }  
    .entry-content {
        max-width: 900px;
    }
}

/* Now enforce the 2-column board layout */
.abo-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 3em;
    justify-items: center;   /* centers each card */
}

/* On mobile: 1 per row */
@media (max-width: 700px) {
    .abo-board-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Center each person block fully */
.abo-person-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Easy font-size controls – change these three values any time */
.abo-board {
  --abo-name-size: 1rem;    /* Name line */
  --abo-role-size: 0.9rem;  /* Title line */
  --abo-org-size: 0.85rem;  /* Company line */
}

/* Grid: 2 across on larger screens */
.abo-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em 2em; /* row gap, column gap */
}

/* 1 across on mobile */
@media (max-width: 700px) {
  .abo-board-grid {
    grid-template-columns: 1fr;
  }
}

/* Each person block */
.abo-person-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Circle photo placeholder */
.abo-person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5f8f5, #e4efe6);
  border: 1px solid #d5e0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BA79B;
  text-align: center;
  margin-bottom: 0.1em; /* very small gap so lines sit right under */
  overflow: hidden;
}

/* If you add real images later */
.abo-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Text under the photo */
.abo-person-text {
  line-height: 1.2; /* keeps lines snug but readable */
}

/* Remove extra space between lines – they must stack tight */
.abo-person-text p {
  margin: 0;
  padding: 0;
}

/* Individual line styles, with variables for font sizes */
.abo-person-name {
  font-size: var(--abo-name-size);
  font-weight: 600;
}

.abo-person-role {
  font-size: var(--abo-role-size);
  font-weight: 500;
}

.abo-person-org {
  font-size: var(--abo-org-size);
  font-weight: 400;
  color: #6E7A6F;
}