.wzpa-card {
    --wzpa-font-family: inherit;
    --wzpa-margin: 0;
    --wzpa-min-column-width: 96px;
    --wzpa-max-column-width: max-content;
    --wzpa-grid-gap: 10px;
    --wzpa-li-border-color: #cccccc;
    --wzpa-li-background-color: #f0f0f0;
    --wzpa-li-border-radius: 10px;
    --wzpa-li-font-size: 1rem;
    --wzpa-li-hover-color: #e0e0e0;
    --wzpa-li-hover-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    --wzpa-link-color: #333333;
    --wzpa-link-hover-color: #000000;
    --wzpa-author-img-radius: 50%;
}

.wzpa_authors.wzpa-card {
    font-family: var(--wzpa-font-family);
    margin: var(--wzpa-margin);
}

.wzpa_authors.wzpa-card ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--wzpa-min-column-width), var(--wzpa-max-column-width)));
    grid-gap: var(--wzpa-grid-gap);
    align-items: stretch;
    list-style: none;
    padding: 0;
}

.wzpa_authors.wzpa-card li {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--wzpa-li-border-color);
    padding: 10px;
    border-radius: var(--wzpa-li-border-radius);
    background-color: var(--wzpa-li-background-color);
    text-align: center;
    font-size: var(--wzpa-li-font-size);
}

.wzpa_authors.wzpa-card li:hover {
    background-color: var(--wzpa-li-hover-color);
    box-shadow: var(--wzpa-li-hover-shadow);
}

.wzpa_authors.wzpa-card a {
    color: var(--wzpa-link-color);
    text-decoration: none;
    font-weight: bold;
}

.wzpa_authors.wzpa-card a:hover {
    color: var(--wzpa-link-hover-color);
}

.wzpa_authors.wzpa-card img {
    align-self: center;
    border-radius: var(--wzpa-author-img-radius);
}



.neardeals-author-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin: 0 auto;
}

.nd-profile-card {
    display: flex;
    background-color: #fff;
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    width: 400px;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

.nd-profile-card:not(:last-child) {
    margin-bottom: 45px;
}

.nd-profile-card-avatar {
    /* flex: 0 0 150px; */
    overflow: hidden;
}

.nd-profile-card-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
}

.nd-profile-content {
    padding: 20px;
    flex: 1;
}

.nd-profile-title {
    font-family: Lexend Deca, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2em;
    margin: 0;
    color: #222;
    padding-bottom: 8px;
}

.nd-profile-subtitle {
    font-family: Lexend Deca, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: #0F45FF;
    padding-bottom: 12px;
}

.nd-profile-subtitle__link {
    text-decoration: none;
    color: #333333;
    cursor: pointer;
}

.nd-profile-social-icons {
    display: flex;
    gap: 10px;
}

.nd-profile-social-icon {
    color: #999999;
    font-size: 14px;
    transition: color 0.3s;
    width: 24px;
    height: 24px;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nd-profile-social-icon:hover {
    color: #fff;
    background-color: #0F45FF;
    border-color: #0F45FF;
}