.profile-card-v2 {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    background-color: white;
    position: relative;
}

.profile-card-v2__image {
    width: 100%;
    height: 100%;
}

.profile-card-v2__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card-v2__content {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    width: 100%;
}

@media screen and (min-width: 768px) {
    .profile-card-v2__content {
       position: absolute;
       bottom: 1rem;
       left: 1rem;
       right: 1rem;
       width: -webkit-fill-available;
    }
    
}

.profile-card-v2__name {
    color: #00345E;
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.profile-card-v2__title {
    color: #00345E;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}

.profile-card-v2__description {
    color: #141414;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

.profile-card-v2__link {
    color: #003D7C;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.profile-card-v2__link:hover {
    background: rgba(0, 61, 124, 0.1);
    border-radius: 4px;
}

/* editor */
.acf-block-preview .profile-card-v2__content {
    position: relative;
    left: 0;
    right: 0;
}