/**
 * FileHub Author Block Styles
 */

.wp-block-filehub-author {
    margin: 1em 0;
}

.filehub-author-inner {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

.filehub-author-avatar {
    flex-shrink: 0;
}

.filehub-author-avatar img {
    border-radius: 50%;
    display: block;
}

.filehub-author-info {
    flex: 1;
    min-width: 0; /* Prevent text overflow issues */
}

.filehub-author-name {
    margin-bottom: 0.5em;
}

.filehub-author-name strong {
    font-size: 1.1em;
}

.filehub-author-name a {
    text-decoration: none;
    color: inherit;
}

.filehub-author-name a:hover {
    text-decoration: underline;
}

.filehub-author-title {
    color: #666;
    font-style: italic;
    margin-bottom: 0.25em;
}

.filehub-author-company {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 0.25em;
}

.filehub-author-bio {
    margin: 0.75em 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.filehub-author-bio p {
    margin: 0;
}

.filehub-author-specialties {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 0.5em;
}

.filehub-author-social-links {
    display: flex;
    gap: 0.5em;
    margin-top: 0.75em;
}

.filehub-social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    background: #f0f0f0;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

.filehub-social-link:hover {
    background: #e0e0e0;
    text-decoration: none;
}

.filehub-icon {
    margin-right: 0.25em;
}

/* Text alignment support */
.wp-block-filehub-author.has-text-align-center .filehub-author-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wp-block-filehub-author.has-text-align-right .filehub-author-inner {
    flex-direction: row-reverse;
    text-align: right;
}

/* Editor-specific styles */
.filehub-author-block-placeholder,
.filehub-author-block-loading,
.filehub-author-block-no-author {
    padding: 1em;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
    color: #666;
}

.filehub-author-block-preview {
    border: 1px solid #e0e0e0;
    padding: 1em;
    border-radius: 4px;
    background: #fafafa;
}

.filehub-author-block-preview .filehub-author-inner {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .filehub-author-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .filehub-author-social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}