.teamCardsGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.teamCard {
    display: grid;
    grid-template-columns: 200px 1fr;
    /* photo gauche, contenu droite */
    align-items: stretch;
    min-height: 200px;
    background: #fff;

    border-radius: 16px;
    overflow: hidden;
}

.teamCard__photo {
    width: 225px;
    height: 300px;
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, .04);
    padding: 20px;
}

.teamCard__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* gap: 6px; */
}

.teamCard__name {
    margin: 0;
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.2;
}

.teamCard__subtitle {
    margin: 0;
    font-size: .95rem;
    line-height: 1.35;
    color: rgba(0, 0, 0, .70);
}

.team-chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.press-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.press-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

/* this overrides the styles.css one */
.card-overlay-inner .program-chapter-card .justify {
    text-align: justify;
    margin: 12px;
}