/**
 * 著者データブロック スタイル
 */

/* Base Styles */
.fg-author-data {
    width: 100%;
    margin: 2rem 0;
}

.fg-author-data__inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Layout: Horizontal (default) */
.fg-author-data--layout-horizontal .fg-author-data__inner {
    flex-direction: row;
    align-items: flex-start;
}

/* Layout: Vertical */
.fg-author-data--layout-vertical .fg-author-data__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatar */
.fg-author-data__avatar {
    flex-shrink: 0;
}

.fg-author-data__avatar-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Content */
.fg-author-data__content {
    flex: 1;
    min-width: 0;
}

.fg-author-data--layout-vertical .fg-author-data__content {
    width: 100%;
}

/* Display Name */
.fg-author-data__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.fg-author-data--layout-vertical .fg-author-data__name {
    margin-top: 1rem;
}

/* Bio */
.fg-author-data__bio {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #718096;
    margin: 0;
}

.fg-author-data__bio p {
    margin: 0 0 0.75rem 0;
}

.fg-author-data__bio p:last-child {
    margin-bottom: 0;
}

/* Preview Empty State */
.fg-author-data--preview-empty {
    border: 1px dashed #e2e8f0;
    border-radius: 8px;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .fg-author-data--layout-horizontal .fg-author-data__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .fg-author-data--layout-horizontal .fg-author-data__name {
        margin-top: 1rem;
    }
    
    .fg-author-data__name {
        font-size: 1.25rem;
    }
    
    .fg-author-data__bio {
        font-size: 0.875rem;
    }
}
