/* ─────────────────────────────────────────────
   IP / IVP SECTION
───────────────────────────────────────────── */
.ipivp-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

/* Two cards sit side by side with equal width */
.ipivp-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.ipivp-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ─────────────────────────────────────────────
   PHOTO — same portrait dimensions as advisory board
───────────────────────────────────────────── */
.ipivp-photo-wrap {
    width: 100%;
    height: 520px;
}

.ipivp-photo,
.ipivp-photo-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    background-color: #d8d8d8;
}

/* ─────────────────────────────────────────────
   INFO TEXT — mirrors advisory board styling
───────────────────────────────────────────── */
.ipivp-info {
    padding-top: 20px;
}

.ipivp-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3a6b;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.ipivp-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.ipivp-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — stack vertically on mobile
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .ipivp-row {
        flex-direction: column;
        gap: 60px;
    }
}