/* Founder Section Centering & Organization Fix */

.founder-bio {
    text-align: center !important;
}

.founder-bio__name,
.founder-bio__position {
    justify-content: center !important;
    text-align: center !important;
}

.founder-bio__text {
    text-align: center !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure the grid of companies is centered */
.founder-companies-grid {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
}

/* Specific fix for the profile card layout on mobile and tablet */
@media screen and (max-width: 1023px) {
    .founder-profile-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .founder-image-section {
        margin-bottom: 2.5rem !important;
    }

    .founder-bio {
        padding: 0 1rem !important;
    }
}