.dgr-am-author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin: 30px 0;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    align-items: flex-start;
}

.dgr-am-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.dgr-am-author-content {
    flex: 1;
}

.dgr-am-author-name {
    margin: 0 0 5px;
    font-size: 1.3em;
    color: #1a1a1a;
}

.dgr-am-verified {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #2271b1;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 6px;
    vertical-align: middle;
}

.dgr-am-author-position {
    color: #666;
    font-style: italic;
    margin: 5px 0;
}

.dgr-am-author-bio {
    margin: 10px 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95em;
}

.dgr-am-author-social {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.dgr-am-social-icon {
    display: inline-block;
    padding: 4px 12px;
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.2s;
}

.dgr-am-social-icon:hover {
    background: #dee2e6;
    color: #212529;
}

.dgr-am-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dee2e6;
}

.dgr-am-post-count {
    color: #666;
    font-size: 0.9em;
}

.dgr-am-view-all {
    display: inline-block;
    padding: 6px 14px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.2s;
}

.dgr-am-view-all:hover {
    background: #135e96;
    color: #fff;
}

.dgr-am-collaborators {
    min-width: 160px;
    padding-left: 20px;
    border-left: 1px solid #dee2e6;
}

.dgr-am-collaborators h4 {
    margin: 0 0 10px;
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dgr-am-collaborators ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dgr-am-collaborators li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    font-size: 0.9em;
}

.dgr-am-collaborators img {
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .dgr-am-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .dgr-am-author-avatar {
        margin: 0 auto;
    }
    
    .dgr-am-collaborators {
        border-left: none;
        border-top: 1px solid #dee2e6;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .dgr-am-author-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}