.apc-card {
    max-width: 100%;
    width: 100%;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: left;
    font-family: inherit;
    display: flex;
    align-items: flex-start;
    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: left;
}
.userprofile-img 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: start;
}
.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;
}
.apc-post-author {
    display: flex;
    gap: 12px;
    margin: 15px 0 25px;
    align-items: flex-start;
}
.apc-author-left {
    flex-shrink: 0;
}
.apc-author-left img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.apc-author-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}
.apc-bluetick {
    width: 16px;
    height: 16px;
}
.apc-author-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.apc-post-date {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
    display: flex;
    align-items: center;
}
.apc-author-social {
    display: flex;
    gap:10px;
    margin-top: 10px;
    justify-content: start;
    align-items: center;
}
.apc-author-social a{
   width: 35px;
    height: 35px;
    display: flex;
    align-items: center;    
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
}
.apc-author-social a img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    border-radius: 0;
    filter: invert(1);
}   
.apc-author-social a.s-facebook {
    background-color: #3b5998;
}
.apc-author-social a.s-twitter {
    background-color: #000000;
}
.apc-author-social a.s-linkedin {
    background-color: #0077B5;
}
.apc-author-social a.s-instagram {
    background-color: #e1306c;
}
.apc-author-social a.s-pinterest {
    background-color: #bd081c;
}
.apc-post-views {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #777;
}
.apc-post-views img {
    width: 14px;
    height: 14px;
}
.post .wp-post-image {
    margin-bottom: 30px;
}
@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;
    }
}