/* ============================================================
   HOME PAGE — css/home.css
   Only affects pages with <body class="page-home">
   ============================================================ */

/* ---- Vision text: black, not italic ---- */
.page-home .section p.center {
    font-size: 1.15rem;
    line-height: 1.85;
    font-style: normal;
    color: #111827;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

/* ---- Business cards: full width, centered on all screens ---- */
.page-home .cards {
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
}

.page-home .card {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 340px;
}

/* ---- Card images: full width, centered ---- */
.page-home .card img.biz-icon {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    margin: 0 0 15px 0;
    border-radius: 8px;
    max-width: 100%;
}

/* ---- Our Businesses heading ---- */
.page-home .section h3 {
    font-size: 28px;
    text-align: left;
}


@media (max-width: 900px) {
    .page-home .card {
        min-width: 160px;
        max-width: 100%;
    }
}
.profile-row {
    display: flex;
    align-items: flex-start; /* same top height */
    gap: 50px;
}

.profile-row h2 {
    min-width: 200px;
    margin: 0;
}

.profile-text {
    max-width: 700px;
    
}

.profile-text p {
    margin-top: 0;
}