/* ================================================
   13. ヒーローセクション専用スタイル
   ================================================ */

/* ペルソナアーカイブページのヒーロー部分 */
.persona-hero-main {
    display: flex;
    justify-content: center;
    width: 100%;
}

.persona-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-4);
    max-width: 400px;
}

.persona-hero-avatar {
    margin-bottom: var(--spacing-16);
}

.persona-hero-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
}

.persona-hero-title {
    font-size: var(--font-size-ll) !important;
    font-weight: 600;
    color: var(--color-black);
    line-height: var(--line-height-limited);
    margin-bottom: var(--spacing-4);
}

.persona-hero-content .persona-info {
    font-size: var(--font-size-m) !important;
}

/* 自己紹介エリア */
.persona-introduction-area {
    max-width: 600px;
    margin: 0 auto;
}

.introduction-content {
    background: var(--color-bg-section);
    padding: var(--spacing-32);
}

.introduction-content p {
    color: var(--color-black);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-16);
    font-size: var(--font-size-m);
}

.introduction-content p:last-child {
    margin-bottom: 0;
}

/* ヒーローボディコピーエリア */
.hero-body-copy {
    margin: var(--spacing-32) auto var(--spacing-48);
    max-width: 600px;
    text-align: center;
}

.hero-body-text {
    font-size: var(--font-size-l);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-16);
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-body-text.highlight {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-l);
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .introduction-content {
        padding: var(--spacing-32) 0;
    }
    
    .hero-body-copy {
        margin: var(--spacing-24) auto var(--spacing-32);
        padding: 0 var(--spacing-16);
    }
    
    .hero-body-text {
        word-break: keep-all;
        overflow-wrap: anywhere;
        line-height: var(--line-height-wide);
    }
}