﻿p {
    margin: 0;
}

.profileCardsCover {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.profileCardWrapper {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 948px; */
    justify-content: space-around;
    column-gap: 24px;
    margin-top: 24px;
    margin-left: 8px;
}

.profileCard {
    display: flex;
    width: 300px;
    margin-bottom: 24px;
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 14%);
    border-radius: 8px;
    overflow: hidden;
}

.profileImageWrapper {
    overflow: hidden;
    min-width: 86px;
}

    .profileImageWrapper img {
        transform: scale(1.2);
    }

.profileText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

    .profileText > p {
        margin-bottom: 12px;
        padding: 0 12px;
        text-align: center;
    }

.profileName {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #004892;
}

.profileDate {
    display: flex;
    justify-content: center;
}


@media screen and (max-width:475px){
    .profileCard {
        width: 250px;
    }
}


