/* Variables converted to values directly */

/* Post Byline Styles */
.post-byline {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    padding: 20px;
    background-color: #fff !important;
    width: 100%;
    border-radius: 8px;
}

/* Author Section */
.byline-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.author-name-role {
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
}

.author-name:hover {
    color: #0066cc;
}

.author-role {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.trust-signal {
    color: #0066cc;
    cursor: help;
    font-size: 14px;
    margin-left: 4px;
}

.trust-signal:hover {
    color: #004499;
}

.wrapper-author-name-role {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    align-items: center;
}

/* Reviewer Section */
.byline-reviewer {
    font-size: 14px;
    color: #666;
}

.reviewer-name {
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.reviewer-name:hover {
    color: #0066cc;
}

/* Post Meta Info */
.post-meta-info {
    font-size: 13px;
    color: #666;
}

/* Footer Links */
.post-footer-links {
    margin-left: 0;
    font-size: 12px;
}

.post-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
}

.post-footer-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.link-separator {
    margin: 0 8px;
    color: #999;
}

.author-box-content {
    margin-left: 0;
    font-size: 14px;
    color: #1a1a1a;
    margin-top: 11px;
    line-height: 1.6;
}

.author-box-content p {
    color: #666;
}

.accordion-chevron {
    position: absolute;
    transition: transform 0.3s ease;
    right: 16px;
}

.accordion-button {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 8px;
    border: 1px solid #c9c9c9;
    color: #666;
    border-radius: 5px;
    font-size: 14px;
}

.author-box-content .accordion-item,
.author-box-content .accordion-headerl,
.author-box-content .accordion-button {
    background: transparent;
}

.author-box-content .accordion-body a b,
.author-box-content .accordion-body a {
    color: #041e34 !important;
}

.author-box-content .accordion-body a b,
.author-box-content .accordion-body a,
.author-box-content .accordion-body p {
    font-size: 14px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .reviewer-title,
    .author-role {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80px;
        margin-bottom: -5px;
        display: inline-block;
    }

    .trust-signal {
        display: none !important;
    }

    .byline-reviewer,
    .post-meta-info,
    .post-footer-links {
        margin-left: 0;
        margin-top: 10px;
    }

    .byline-author {
        align-items: flex-start;
    }

    .wrapper-author-name-role {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .post-byline .author-avatar {
        width: fit-content;
    }

    .post-byline .author-info {
        border-right: 0 !important;
        padding-right: 0 !important;
    }

    .post-byline .post-meta-info {
        margin-top: 0 !important;
    }

    .post-byline .byline-reviewer {
        margin-left: -50px;
    }

    .post-byline .accordion-button {
        padding: 8px;
        font-size: 14px;
    }

    .post-footer-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .post-footer-links .link-separator {
        display: none;
    }

    .post-byline {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0px !important;
        margin-top: 10px !important;
    }

    .blog-single h1 {
        margin-top: 20px;
    }
}