.profile-card {
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
    height: 491px;
}
.hub-logo {
    /*max-height: 40px;*/
    height: 78px;
    width: 100%;
    mix-blend-mode: darken;
    object-fit: contain;
}
.dot-pattern {
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 16px 16px;
}
.profile-image-container {
    width: 122px; /* 48 * 4 */
    height: 122px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-details h1 {
    font-size: 1rem; /* text-3xl */
    font-weight: 700;
    color: #1f2937; /* gray-800 */
}
.profile-details p {
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    color: #4b5563; /* gray-600 */
}
.contact-info .fa-solid {
    color: #6b7280; /* gray-500 */
}
.business-details h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 0px;
}
.business-details p.sector {
    font-size: 1.25rem; /* text-xl */
    font-weight: 500;
    color: #4b5563; /* gray-600 */
}
.business-details p.description {
    color: #374151; /* gray-700 */
    line-height: 1.625;
    font-size: 1.125rem; /* text-lg */
}
.profile-card .top {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
    height: 146px;
}
.profile-card .top .profile-info {
    display: flex;
    flex-direction: column;
    width: 70%;
}
#entrepreneur-card-slider .item {
    margin-left: 10px;
    margin-right: 10px;
}
.profile-card .description {
    font-size: 14px !important;
}
.our-entrepreneurs_h2 {
    color: white;
}
/* Responsive adjustments for medium screens and up */
@media (min-width: 768px) {
    .profile-card-container {
        max-width: 960px; /* max-w-4xl */
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }
    .profile-image-container {
        width: 50%; /* md:w-60 */
        height: 100px; /* md:h-60 */
        margin-bottom: 0;
    }
    .profile-details {
        align-items: flex-start;
    }
    .contact-info {
        align-items: flex-start;
    }
    .business-details {
        border-top: none;
        /*! border-left: 1px solid #d1d5db; */ /* gray-300 */
        /*! padding-left: 2rem; */
        padding-top: 0;
    }
    .hub-logo {
        height: 70px;
        width: fit-content;
        mix-blend-mode: darken;
        margin: auto;
    }
}
