section.profile-cards span.center-column{
    display: flex;
    align-items: flex-start;
    padding: 104px 80px;
}

section.profile-cards div.container {
    align-items: flex-start;
}

section.profile-cards h2 {
    padding-bottom: 16px;
}

section.profile-cards .profile-cards-grid {
    display: flex;
    flex-direction: row;
    padding: 48px 0px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

section.profile-cards .profile-cards-grid .profile-card {
    border-radius: 20px;
    background-color: var(--primary-brand);
    overflow: hidden;
    max-width: 411px;
    max-height: 458px;
}

section.profile-cards .profile-cards-grid .profile-card img {
    border-radius: 20px 20px 0px 0px;
    width: 410.67px;
    height: 326px;
    object-fit: cover;
}

section.profile-cards .profile-cards-grid .profile-card img.left-top{
    object-position: left top;
}

section.profile-cards .profile-cards-grid .profile-card img.center-top{
    object-position: center top;
}

section.profile-cards .profile-cards-grid .profile-card img.right-top{
    object-position: right top;
}

section.profile-cards .profile-cards-grid .profile-card img.left-center{
    object-position: left center;
}

section.profile-cards .profile-cards-grid .profile-card img.center-center{
    object-position: center center;
}

section.profile-cards .profile-cards-grid .profile-card img.right-center{
    object-position: right center;
}

section.profile-cards .profile-cards-grid .profile-card img.left-bottom{
    object-position: left bottom;
}

section.profile-cards .profile-cards-grid .profile-card img.center-bottom{
    object-position: center bottom;
}

section.profile-cards .profile-cards-grid .profile-card img.right-bottom{
    object-position: right bottom;
}

section.profile-cards .profile-cards-grid .profile-card  h5, section.profile-cards .profile-cards-grid .profile-card p {
    color: var(--white);
}

section.profile-cards .profile-cards-grid .profile-card  h5 {
    padding-bottom: 8px;
}

section.profile-cards .profile-cards-grid .profile-card p {
    opacity: 85%;
}

section.profile-cards .profile-cards-grid .profile-card .card-content {
    height: 132px;
    padding: 20px;
}

section.profile-cards a {
    text-decoration: none;
}

section.profile-cards a button.text-md {
    display: flex;
    min-width: 75px;
    padding: 13px 24px;
    justify-content: center;
    align-items: center;
    color: var(--primary-brand);
    font-family: "Inter";
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid var(--primary-brand);
    background-color: var(--white);
}

section.profile-cards a button.text-md:hover {
    cursor: pointer;
    background: var(--button-secondary-subdued-light-default, #F2F6F7 · 6%);
}

section.profile-cards a button.text-md:active {
    cursor: pointer;
}


@media screen and (max-width: 1392px) {

    section.profile-cards .profile-cards-grid {
        justify-content: flex-start;
        gap: 24px;
    }

}

@media screen and (max-width: 1005px) {

    section.profile-cards .profile-cards-grid {
        justify-content: center;
    }

    
}

@media screen and (max-width: 600px) {

    section.profile-cards span.center-column {
        padding: 80px 18px;
    }

}