.ppc-grid {
    display: grid;
    grid-template-columns: repeat(var(--ppc-cols, 3), 1fr);
    gap: 24px;
    align-items: stretch;
}

.ppc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 24px;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ppc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

/* Bigger, full-width rectangular photo (no circle) */
.ppc-card__photo {
    width: 100%;
    margin-bottom: 18px;
}

.ppc-card__photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.ppc-card__body {
    padding: 0 20px;
}

.ppc-card__name {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.2;
}

.ppc-card__designation {
    margin: 0 0 12px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ppc-card__bio {
    margin: 0 0 14px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.ppc-card__links a {
    display: inline-block;
    margin: 0 7px;
    font-size: 13px;
    text-decoration: none;
    color: #0073aa;
    font-weight: 600;
}

.ppc-card__links a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .ppc-grid { grid-template-columns: repeat(2, 1fr); }
    .ppc-card__photo img { height: 360px; }
}
@media (max-width: 560px) {
    .ppc-grid { grid-template-columns: 1fr; }
    .ppc-card__photo img { height: 420px; }
}