/*
 * Authenticator Toolkit Styles
 * Used for post titles (verified badge) and custom author/profile sections.
 */

.verified-badge {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    line-height: 0;
}
.verified-badge-icon {
    height: 1em;
    width: auto;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}
body.rtl .verified-badge {
    margin-left: 0;
    margin-right: 5px;
}

/* --- Author Profile Styling (If you are using Elementor code injection) --- */

.author_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    gap: 20px;
}
.author_profile {
    width: 150px;
    border-radius: 16px !important;
    overflow: hidden;
}
.elementor-heading-title.elementor-size-default {
    font-size: 0.8em;
    font-weight: 300;
    /* Use CSS variables defined by your theme or Elementor */
    color: var(--bg-200) !important;
}
.elementor-heading-title.elementor-size-default .vcard {
    font-size: 1.875em;
    width: 100%;
    display: block;
    padding-top: 10px;
    font-weight: 600;
    color: white;
}
.author_bio {
    color: var(--bg-200) !important;
    margin: 0 !important;
}
.author_social ul.social_links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.author_social ul.social_links li {
    margin: 0;
    padding: 0;
}
.author_social ul.social_links a {
    text-decoration: none;
}

/* --- Mobile Author Profile Styling --- */

.author_section-mob {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Adjusted alignment for RTL/Mobile */
    text-align: right;    /* Adjusted alignment for RTL/Mobile */
    gap: 20px;
    background: var(--bg-900);
    border-radius: 16px;
}
.author_profile-mob {
    width: 150px;
    height: 150px;
    border-radius: 16px !important;
    overflow: hidden;
}
.author_bio-mob {
    color: var(--bg-200) !important;
    margin: 0 !important;
}
.author_social-mob ul.social_links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.author_social-mob ul.social_links li {
    margin: 0;
    padding: 0;
}
.author_social-mob ul.social_links a {
    text-decoration: none;
}