.apc-card {
    max-width: 100%;
    width: 100%;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: left;
    font-family: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 30px auto;
    gap: 20px;
}
.userprofile-img {
    max-width: 100%;
}
.user-information {
    /* -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; */
    text-align: center;
}
.apc-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.apc-card .user-information h3 {
    margin: 0 0 30px;
    font-size: 1.8em;
    position: relative;
    display: inline-block;
}
.apc-card .user-information h3 img.blutick {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0px;
    right: -36px;
}
/* Light Theme */
.apc-light {
    background: #ffffff;
    color: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border: 1px solid rgba(112, 112, 112, 0.3);
}
/* Dark Theme */
.apc-dark {
    background: #1e1e1e;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.apc-dark .user-information h3{
    color: #ffffff;
}
.apc-dark a {
    color: #4db2ff;
}
.apc-social {
    display: flex;
    gap:10px;
    margin-top: 20px;
    justify-content: center;
}
.apc-social a{
   width: 40px;
    height: 40px;
    display: flex;
    align-items: center;    
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
}
.apc-social a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 0;
    filter: invert(1);
}   
.apc-social a.s-facebook {
    background-color: #3b5998;
}
.apc-social a.s-twitter {
    background-color: #000000;
}
.apc-social a.s-linkedin {
    background-color: #0077B5;
}
.apc-social a.s-instagram {
    background-color: #e1306c;
}
.apc-social a.s-pinterest {
    background-color: #bd081c;
}
@media (max-width: 767px) {
    .apc-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }
    .userprofile-img,
    .user-information {
        flex: none;
        max-width: 100%;
    }
    .userprofile-img img {
        width: 100px;
        height: 100px;
    }
    .apc-social a {
        margin: 0 5px;
    }
}