/* プロフィールセクションスタイル */
.profile-section {
    padding: 3rem 0;
}

.profile-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-photo {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--light);
}

.profile-text {
    flex: 1;
}

.profile-intro h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.profile-role {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
}

.profile-details p {
    margin: 0 0 1rem 0;
    line-height: 1.7;
    color: var(--text-primary);
}

.profile-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 210, 152, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.highlight-icon {
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* セクションタイトルの中央寄せ */
    .section h2 {
        text-align: center;
    }
    
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .profile-photo {
        align-self: center;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        display: block;
    }
    
    .profile-text {
        padding: 0 1rem;
    }
    
    .profile-details p {
        text-align: left;
        margin: 0 0 1rem 0;
    }
    
    .profile-highlights {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 0 0.5rem;
    }
    
    .profile-text {
        padding: 0 0.5rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-intro h3 {
        font-size: 1.3rem;
    }
    
    .profile-role {
        font-size: 1rem;
    }
    
    .profile-details p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
